.our-offices {
    padding-block: 150px;
    background-color: var(--color-dark);

    @media (max-width: 992px) {
        padding-block: 90px;
    }

    .regular-h2 {
        @media (max-width: 992px) {
            font-size: 34px;
            line-height: 52px;
        }
    }
}

.our-offices__title {
    color: var(--color-text-light);
}

.our-offices__tabs {
    margin-top: 30px;
}

.our-offices__tabs-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;

    @media (max-width: 992px) {
        margin-bottom: 0;
    }
}

.our-offices__tabs-button {
    cursor: pointer;

    background-color: transparent;
    border: 1px solid #FFFFFF80;
    border-radius: 15px;

    padding: 20px;

    color: var(--color-text-light);

    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    text-align: start;

    @media (max-width: 992px) {
        font-size: 16px;
        border-radius: 10px;
    }

    & span:nth-child(2) {
        margin-top: 10px;
        font-weight: 400;
        display: block;
    }

    &.active {
        background-color: var(--color-light);
        color: var(--color-text-dark);
    }
}

.our-offices__tabs-content {
    height: 500px;
}

.our-offices__tab {
    margin-top: 10px;

    opacity: 0;
    position: absolute;

    width: 100%;
    height: 100%;
    max-height: 500px;
    max-width: 1400px;

    @media (max-width: 992px) {
        max-height: 500px;
        max-width: 345px;
    }

    &.active {
        opacity: 1;
    }
}

.our-offices__tab-map {
    height: 100%;

    width: 100%;

    border-radius: 30px;
    object-fit: cover;

    @media (max-width: 992px) {
        border-radius: 10px;
    }
}