/* .about-content {
    padding: 20px 0;
} */

.about-content .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 24px;
}

.about-content .text-wrapper {
    width: calc(50% - 24px);
    flex: 1 auto;
}

.about-content .text-wrapper.w-100 {
    width: 100%;
}

.about-content iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 1620 / 633;
}

.about-content .block-title.title-inner {
    margin-left: 0;
}

.about-content .text-content,
.about-content .text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-content .text-wrapper h3 {
    font-size: 22px;
    font-family: 'Alegreya Sans';
}

.about-content .text-wrapper ul {
    margin: 0;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--content);
}

@media (max-width:991px) {

    .about-content .text-content,
    .about-content .text-wrapper {
        gap: 24px;
    }

    .about-content .text-wrapper {
        width: 100%;
    }

    .about-content .text-content {
        gap: 16px;
    }


    .about-content .text-wrapper ul {
        gap: 12px;
    }
}