.template-text-video-photo {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background-color: #ffffff;
}


.template-text-video-photo .bigger.accordion-section {
    padding: 40px 5%;
    box-sizing: border-box;
}

.accordion-block-title {
    font-family: 'FuturaFuturisCBold';
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.accordion-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.accordion-block {
    border-bottom: 1px solid #eaeaea;
    padding-top: 1rem;
}

.accordion-block .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'FuturaBookC';
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    user-select: none;
    text-transform: capitalize;
    padding-bottom: 1rem;
}

.accordion-block .title::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(45deg);
    transition: transform 0.4s ease-in-out;
    margin-left: 15px;
}

.accordion-block.active .title::after {
    transform: rotate(225deg);
}

.accordion-block .content {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    font-family: 'FuturaBookC';
    font-size: 1rem;
    color: #555555;
    line-height: 1.5;
}

.accordion-block.active .content {
    max-height: 600px;
    transition: max-height 0.8s ease-in-out;
}

