.who-we-are {
    position: relative;
    width: 100%;
    padding: 60px 0;
}

.who-we-are .left-section, .who-we-are .right-section {
    max-width: calc(50% - 40px);
    width: 100%;
}

.who-we-are .row {
    justify-content: space-between;
}

.who-we-are .left-section > * {
    color: var(--secondary-color);
}

.who-we-are .left-section .tagline {
    font-size: 22px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.who-we-are .left-section h2.average-title {
    font-size: 40px;
    font-weight: 500;
    font-family: "Funnel Display", sans-serif;
    margin-bottom: 30px;
}

.who-we-are .left-section p {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 24px;
}

.who-we-are .left-section p:last-child {
    margin-bottom1: 0;
}

.who-we-are .bottom-section {
    margin-top: 60px;
}

.who-we-are .bottom-section > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.who-we-are .bottom-section > ul > li {
    max-width: calc(50% - 20px);
    width: 100%;
    background-color: #000;
    padding: 20px;
}

.who-we-are .bottom-section > ul > li > a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    cursor: default;
    pointer-events: none;
}

.who-we-are .bottom-section > ul > li > a > span {
    font-size: 22px;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
}

.who-we-are .bottom-section > ul > li > a > svg {
    display: none;
}

.who-we-are .bottom-section > ul > li > ul > li > a {
    pointer-events: none;
    cursor: default;
}

.who-we-are .bottom-section > ul > li > ul > li > a > span {
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
}

@media (max-width: 768px) {
.who-we-are {
    padding: 40px 0;
}

    .who-we-are .left-section, .who-we-are .right-section {
    max-width: 100%;
}

.who-we-are .left-section .tagline {
    font-size: 16px;
}

.who-we-are .left-section h2.average-title {
    font-size: 29px;
    margin-bottom: 20px;
}

.who-we-are .left-section p {
    font-size: 14px;
    line-height: 20px;
}

.who-we-are .left-section p:last-child {
    margin-bottom: 20px;
}

.who-we-are .container {
    padding: 0;
}

.who-we-are .left-section {
    padding: 0 15px;
}

.who-we-are .bottom-section {
    padding: 0 15px;
    margin-top: 40px;
}

.who-we-are .bottom-section > ul {
    flex-direction: column;
    gap: 10px;
}

.who-we-are .bottom-section > ul > li {
    max-width: 100%;
}

.who-we-are .bottom-section > ul > li > a > span {
    font-size: 14px;
}

.who-we-are .bottom-section > ul > li > ul > li > a > span {
    font-size: 12px;
}

.who-we-are .bottom-section > ul > li > a > svg {
    display: block;
    font-size: 20px;
}

.who-we-are .bottom-section > ul > li > ul {
    display: none;
}

.who-we-are .bottom-section > ul > li > a {
    margin-bottom: 0;
}

.who-we-are .bottom-section > ul > li.active > ul {
    display: block;
}

.who-we-are .bottom-section > ul > li.active > a > svg {
    transform: rotate(180deg);
}
}