.servicio-link {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 100px auto;
}

.servicios_grid {
    margin-top: 20px;
    align-self: start;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    grid-auto-rows: 300px;
}

.titulo {
    font-size: 40px;
    margin-top: 30px;
    color: #d8a07b;
}

@media screen and (max-width: 750px) {
    .titulo {
        line-height: 38px;
        display: flex;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 15px;
    }
}


.servicioContainer {
    padding: 12px 0;
    display: flex;
    position: relative;
    box-shadow: 0 0 10px 4px rgb(0 0 0 / 20%);
    border-radius: 5px;
    margin-bottom: 40px;
    height: 100%;
    overflow: hidden;
    align-items: flex-end;
}

@media screen and (max-width: 750px) {
    .servicioContainer {
        flex-direction: column;
        justify-content: flex-end;
        padding: 0PX;
    }
}

.titleContainer {
    padding: 6px 0;
    width: 100%;
    background-color: rgb(216 160 123 / 80%);
    box-shadow: 0 0 8px rgb(0 0 0 / 20%);
    display: flex;
    position: absolute;
}

@media screen and (max-width: 750px) {
    .titleContainer {
        justify-content: center;
        text-align: center;
        margin-bottom: 10px;
    }
}


.tituloServicio {
    font-size: 20px;
    padding-left: 30px;
    color: white;
}

@media screen and (max-width: 750px) {
    .tituloServicio {
        padding-left: 0;
    }

}

.imagenServicio {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 8rem;
}

.blog-nav {
    margin-top: 40px;
    display: flex;
}


.blog-nav-item {
    padding: 10px 20px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    margin-left: 10px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.bow{
    position: absolute;
    top: 15px;
    left: -210px;
    right: 236px;
    background-color: #5193a0;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 8px 0;
    text-align: center;
    border-radius: 4px;
    transform: rotate(-20deg);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    width: auto;
    white-space: nowrap;
}
.conter{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
}
.faq-subtabs {
    margin: 33px 0 0;
}

.faq-subtab {
    padding: 7px 20px;
    background: #eee;
    border: none;
    margin-right: 10px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

.faq-subtab.active {
    background-color: #d8a56d;
    color: white;
}


@media screen and (max-width: 1200px) {
    .bow{
        position: absolute;
        top: 8px;
        left: -172px;
        right: 106px;
        background-color: #5193a0;
        color: white;
        font-size: 12px;
        font-weight: bold;
        padding: 8px 0;
        text-align: center;
        border-radius: 4px;
        transform: rotate(-20deg);
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
        width: auto;
        white-space: nowrap;
    }
}


.blog-nav-item:hover,
.blog-nav-item.active {
    background-color: #deb887;
    color: white;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 8rem;
}
.navigation_bar{
    display: flex;
    width: 100%;
    justify-content: flex-start;

}

@media screen and (max-width: 750px) {
    .servicios_grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .navigation_bar{
        display: flex;
        width: 100%;
        justify-content: center;

    }
    .blog-nav{
        height: 3.5rem;
    }
    .faq-subtabs{
        width: 98%;
        margin: 42px 0 0px;
    }
    .faq-subtab{
        padding: 8px 20px;
    }
}