.oficinas_container {
    height: calc(100vh - 133px);
    display: flex;
    align-items: stretch;
    gap: 20px;
}

@media (max-width: 768px) {
    .oficinas_container {
        flex-direction: column;
        height: auto;
    }
}

.oficinas_map {
    height: 100%;
    width: 50%;
    flex: calc(50% - 10px) 0 0;
}

@media (max-width: 768px) {
    .oficinas_map {
        width: 100%;
        flex: 100% 0 0;
        height: 600px;
        display: block !important;
        margin-bottom: 20px;
        position: relative;
        min-height: 400px;
        visibility: visible !important;
    }
}

.oficina_marker {
    width: 50px;
    height: 50px;
    display: flex;
    background-color: #ffffff;
    border-radius: 50%;
    border: 1px solid #00392e;
    color: #00392e;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
    transition: all .3s ease;
    cursor: pointer;
}

.oficina_marker:before {
    content: "EG.";
}

.oficina_marker.active,
.oficina_marker.active_fijo,
.oficina_marker:hover {
    background-color: #00392e;
    color: #fff;
}

.oficinas_card {
    display: flex;
    gap: 20px;
    flex-direction: column;
    overflow-y: auto;
    width: 50%;
    flex: calc(50% - 10px) 0 0;
    padding-right: 20px;
}

@media (max-width: 768px) {
    .oficinas_card {
        width: 100%;
        flex: 100% 0 0;
        padding-right: 0;
        margin-top: 20px;
    }
}

.oficina_card {
    flex: calc(33.33% - 14px) 0 0;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    height: auto;
    min-height: 200px;
    padding: 15px 0;
}

@media (max-width: 768px) {
    .oficina_card {
        flex: 100% 0 0;
        margin-bottom: 20px;
        height: auto;
        min-height: 250px;
        position: relative;
        overflow: visible;
    }
    
    .oficina_card_content {
        position: absolute;
        height: 100%;
        overflow-y: auto;
    }
}

.oficina_card_title {
    font-family: 'IvyJournal Regular';
    font-style: italic;
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
    font-feature-settings: 'liga' off;
    color: #00392E;
    position: absolute;
    background-color: #ffffff;
    padding: 10px 20px;
    left: 20px;
    top: 20px;
}

.oficina_card_title:before {
    content: "";
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid #00392e;
    display: block;
    position: absolute;
    left: 5px;
    top: 5px;
}

.oficina_card_content {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #00392e;
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
    opacity: 0;
    padding: 20px 30px;
    gap: 20px;
    justify-content: center;
    box-sizing: border-box;
    top: 0;
    left: 0;
    visibility: hidden;
}

.oficina_card_content:before {
    content: "";
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    display: block;
    border: 1px solid #fff;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

.oficina_card:hover .oficina_card_content,
.oficina_card.active .oficina_card_content,
.oficina_card.active_fijo .oficina_card_content {
    opacity: 1;
    visibility: visible;
}

.oficina_card_content_title {
    font-family: 'IvyJournal Regular';
    font-style: italic;
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
    font-feature-settings: 'liga' off;
    color: #ffffff;
    z-index: 2;
}

a.oficina_card_content_element {
    display: flex;
    color: #fff;
    z-index: 2;
    gap: 10px;
}

a.oficina_card_content_element svg {
    background-color: #034d3f;
    padding: 4px;
    border-radius: 3px;
    width: 25px;
    height: 25px;
}