/* Мои стили */
.canvas {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
}

.canvas_title {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    text-transform: uppercase;
    color: #aa8672;
    margin-bottom: 17px;
}

.canvas_text {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #020100;
    display: grid;
    gap: 30px;
}

.slider_info-wrapper {
    margin-inline: auto;
    max-width: 920px;
}

.slider_info-title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    text-align: center;
    color: #020100;
    margin-bottom: 15px;
}

.slider_info-subtitle {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    text-align: center;
    color: #020100;
    margin-bottom: 15px;
}

.slider_info-description {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #020100;
    display: grid;
    gap: 30px;
}

.slider_info .slick-dots {
    display: flex;
    gap: 15px;
    list-style: none;
    justify-content: center;
    margin-top: 30px;
}

.slider_info .slick-dots li {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(170, 134, 114, 0.3);
}

.slider_info .slick-dots li button {
    font-size: 0;
    border: none;
}

.slider_info .slick-dots li.slick-active {
    background-color: #aa8672;
}

.styles {
    margin: 100px 0;
}

.styles_title {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    text-transform: uppercase;
    text-align: center;
    color: #aa8672;
    margin-bottom: 60px;
}

.styles_items {
    border: 1px solid #aa8672;
    list-style: none;
    display: flex;
    max-height: 500px;
}

/* .styles_item {
    padding: 30px;
} */

/* .styles_item.active {
    padding: 30px;
} */

.styles_item:not(:last-child) {
    border-right: 1px solid #aa8672;
}

.styles_item-block {
    display: none;
    padding: 30px;
    justify-content: space-between;
    column-gap: 30px;
}

.styles_item.active .styles_item-block {
    display: flex;
}

.styles_item-img {
    width: 473px;
    height: 440px;
}

.styles_item-img img {
    width: 100%;
    height: 100%;
}

.styles_item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 473.5px;
}

.styles_item-info h3 {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #020100;
    margin-bottom: 17px;
}

.styles_item-info p {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #020100;
}

.styles_item-title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #020100;
    writing-mode: sideways-lr;
    padding: 30px;
    cursor: pointer;
}

.styles_item.active .styles_item-title {
    display: none;
 /*    width: 0;
 height: 0;
 padding: 0;
 overflow: hidden; */
}

.advantages {
    margin: 100px 0;
    display: flex;
    gap: 60px;
}

.advantages_title {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 47px;
    line-height: 130%;
    text-transform: uppercase;
    color: #aa8672;
}

.advantages_info {
    max-width: 761px;
    border: 1px solid #aa8672;
}

.advantages_info-item {
   padding: 30px; 
   cursor: pointer;
}

.advantages_info-item:not(:first-child) {
    border-top: 1px solid #aa8672;
}

.advantages_info-item h3 {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #020100;
}

.advantages_info-item div {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #020100;
    margin-top: 17px;
}

.price {
    margin: 100px 0;
}

.price_title {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    text-transform: uppercase;
    text-align: center;
    color: #aa8672;
    margin-bottom: 60px;
}

.price_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    counter-reset: price-counter;
    border-top: 1px solid #aa8672;
}

.price_item {
    padding: 30px;
    border-bottom: 1px solid #aa8672;
}

.price_list-column:first-child {
    border-right: 1px solid #aa8672;
}

.price_list-column:first-child .price_item {
    border-left: 1px solid #aa8672;
}

.price_list-column:last-child .price_item {
    border-right: 1px solid #aa8672;
}

.price_item-intro {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.price_item-intro img {
    transition: transform 0.5s ease;
}

.price_item-intro.active img {
    transform: rotate(180deg);
}

.price_item-intro h3 {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #020100;
}

.price_item-intro h3::before {
    content: counter(price-counter) ".";
    counter-increment: price-counter;
    margin-right: 8px;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #020100;
}

.price_item-text {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #020100;
    margin: 30px 0 0 0;
}

.delivery {
    margin: 0 0 100px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.delivery_info h2 {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    text-transform: uppercase;
    color: #aa8672;
    margin: 0 0 17px 0;
}

.delivery_info div {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #020100;
    display: grid;
    gap: 20px;
}

.faq_title {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    text-transform: uppercase;
    text-align: center;
    color: #aa8672;
    margin: 0 0 60px 0;
}

.faq_list {
    border: 1px solid #aa8672;
    list-style: none;
}

.faq_item {
    padding: 30px;
}

.faq_item:not(:first-child) {
    border-top: 1px solid #aa8672;
}

.faq_item-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq_item-intro h3 {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #020100;
}

.faq_item-content {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #020100;
    margin: 30px 0 0 0;
}

.faq_item-intro img {
    transition: transform 0.5s ease;
}

.faq_item-intro.active img {
    transform: rotate(180deg);
}

@media (max-width: 1330px) {
    .styles_items {
        max-height: unset;
    }
    
    .styles_item {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .styles_item.active .styles_item-block {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
    }
    
    .styles_item-title {
        padding: 10px;
    }
}

@media (max-width: 1200px) {
    .canvas {
        flex-direction: column;
    }
    
    .canvas_img-wrapper img {
        width: 100%;
    }
    
    .advantages {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .delivery {
        grid-template-columns: 1fr;
    }
    
    .delivery div img {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .slider_info-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .canvas_title,
    .styles_title,
    .advantages_title,
    .price_title,
    .delivery_info h2,
    .faq_title {
        font-size: 42px;
        line-height: 50px;
    }
    
    .styles_item {
        justify-content: start;
    }
    
    .styles_items {
        flex-direction: column;
    }
    
    .styles_item-title {
        writing-mode: horizontal-tb;
    }
    
    .styles_item-img {
        width: 100%;
    }
    
    .styles_item-info {
        max-width: unset;
    }
    
    .styles_item:not(:last-child) {
        border-right: none;
    }
    
    .styles_item:not(:first-child) {
        border-top: 1px solid #aa8672;    
    }
    
    .price_list {
        grid-template-columns: 1fr;
        border: 1px solid #aa8672;  
    }
    
    .price_list-column {
        display: contents;
        border: none;
    }
    
    .price_list-column:first-child .price_item {
        border: none;

    }
    
    .price_list-column:last-child .price_item {
        border: none;

    }
    
    .price_list-column:first-child .price_item {
        border-bottom: 1px solid #aa8672;  
    }
    
    .price_list-column:last-child .price_item:not(:last-child) {
        border-bottom: 1px solid #aa8672;  
    }
    
    .faq_item-intro h3 {
        font-size: 20px;
    }
    
}
