.container {
    height: 100vh !important;
    max-height: 100vh !important;
    flex-direction: row !important;
    overflow-y: hidden;
}

.div-image,
.content {
    width: 50%;
    height: 100%;
    background-color: #eeedeb;
    cursor: default;
}

.div-image {
    border-color: green;
}

.div-image img {
    width: auto;
    height: 100vh;
    object-fit: cover;
}

#carouselPortada {
    /* background: #000; evita que se vea blanco */
}

.carousel-fade .carousel-item {
    opacity: 0.1;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 0.9;
}

.carousel-item {
    position: absolute;
    inset: 0;
}

.carousel-inner {
    position: relative;
}

#carouselPortada .carousel-item-next,
#carouselPortada .carousel-item-prev,
#carouselPortada .carousel-item.active.carousel-item-start,
#carouselPortada .carousel-item.active.carousel-item-end {
    transform: none !important;
}

.content {
    display: flex;
    flex-direction: column;
}

.content .logo,
.content .contact {
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.content .logo img {
    width: 200px;
    height: 80px;
    margin: 0 auto;
    /* border: 1px solid black; */
}

.content .text {
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

p {
    margin: 0 !important;
    font-weight: 500;
}

.content .text .title,
.content .text .subtitle,
.content .text .div-btn {
    align-items: center;
    align-items: center;
    display: flex;
    justify-content: center;
}

.content .text .title {
    height: 60%;
    text-align: center;
    font-size: 20px;
}

.content .text .subtitle {
    height: 10%;
    font-size: 15px;
}

.content .text .div-btn {
    height: 30%;
    padding-top: 2rem;
}

.content .text .div-btn .btn {
    background-color: #eeedeb;
    box-shadow: 1px 1px 3px #0002;
    border-radius: 10px;
    color: #000;
    text-transform: uppercase;
    border: none;
    width: 200px;
    font-weight: 600;
    -webkit-transition: 0.25s !important;
    cursor: pointer !important;
}

.content .text .div-btn .btn:hover {
    filter: invert(100);
    -webkit-transition: 0.25s !important;
}

.content .contact {
    flex-wrap: wrap;
    gap: 0.5rem;
}

.content .contact a img:hover {
    transform: scale(1.25);
    -webkit-transition: 0.25s !important;
}

.content .contact img {
    width: 25px;
    -webkit-transition: 0.25s !important;
}

/* Responsive */

@media (max-width: 834px) and (min-height: 500px) {
    body {
        height: 100vh;
    }

    .container {
        flex-direction: column !important;
        height: 100vh !important;
        max-height: 100vh !important;
        overflow-y: hidden;
    }

    .div-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        opacity: 60%;
    }

    .div-image img {
        object-fit: contain;
    }

    .content {
        position: relative;
        z-index: 2;
        background-color: transparent;
        width: 100vw;
        height: 100vh;
    }

    .content .logo {
        height: 15%;
    }

    .content .text {
        height: 70%;
    }

    .content .contact {
        height: 15%;
    }

    .content .logo img,
    .content .contact a {
        filter: drop-shadow(0 1px 4px #fff);
    }

    .content .text .title p,
    .content .text .subtitle p {
        color: #fff;
        text-shadow: 0 1px 4px #000;
        font-weight: 600;
    }

    .content .text .div-btn .btn {
        filter: invert(100);
        box-shadow: 0 1px 4px #fff;
    }
}