.welcome-section {
    background-image: url("/img/HOME/fondo.jpg");
    display: grid;
    grid-template-columns: 1.5fr 2.2fr 1.5fr;
    padding: 3rem 5rem;
    height: auto;
    transition: all 1s ease-out;
    background-repeat:no-repeat;
    background-size: cover;
}

.mediger-desc {
    font-weight: 600;
    font-weight: 100;
    font-size: 1rem;
    color: #fff
}

.phrase {
    font-size: 1rem;
    color: #fff;
    font-style: italic;
    font-weight: bold;
}

.square-container {
    aspect-ratio: 1 / 1;
    /* Relación de aspecto 1:1 para hacerla cuadrada */
    width: 50%;
    /* Define un ancho */
    overflow: hidden;
    /* Oculta el desbordamiento de la imagen */
}

.square-container img {
    width: 100%;
    /* La imagen llena el contenedor */
    height: 100%;
    object-fit: cover;
    /* Ajusta y recorta la imagen si es necesario */
    border: solid 20px #5aa2a6;
}

.btn-conocenos {
    padding: 4px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bolder;
    border: solid 5px #b0d8d9;
    background-color: #cce6e8;
    color: #0b6a73;
}

.service-desc {
    width: 90%;
    margin: 0;
}

.menu-option {
    padding: 1rem 0;
}

.menu-wrapper {
    transition: all 1s ease-out;
}

.menu-text {
    margin: 0;
}

.img{
    height: 85vh;
}

@media only screen and (max-width: 1200px) {

    .welcome-section {
        padding: 2rem 2rem;
    }

    .mediger-desc,
    .phrase {
        text-align: center;
        font-size: 1.4rem;
    }

    .square-container {
        aspect-ratio: 1 / 1;
        /* Relación de aspecto 1:1 para hacerla cuadrada */
        width: 60%;
        /* Define un ancho */
        overflow: hidden;
        /* Oculta el desbordamiento de la imagen */
    }

}

@media only screen and (max-width: 993px) {

    .welcome-section {
        background-color: #1d7b82;
        display: grid;
        grid-template-columns: 1fr;
        padding: 2rem 2rem;
        height: auto;
    }

    .square-container {
        width: 57%;
        margin: 1rem 0rem;
    }

    .service-desc {
        text-align: justify;
        width: 100%;
        margin: 0;
        padding: 0 3rem;
    }

    .img{
        height: 65vh;
    }
}