#footer,
#nav {
    position: fixed !important;
}

main {
    padding: 1.5rem;

}

img {
    width: 100% !important;
    object-fit: cover;
    filter: grayscale(100%);
}

.grid-col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}

.left .title {
    font-size: 7rem;
    font-weight: bold;
    line-height: .5;
    margin: 6rem 0rem 3rem 0rem;
}

.left .title2 {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
}

.left p {
    padding-right: 15rem;
    margin-bottom: 2rem;
}

.left img {
    height: 53vh;
    width: 50vw;
}

.right img {
    width: 47vw;
    height: 81vh;
}

.contenedor-scroll {
    width: 100vw;
    /* Ancho fijo del contenedor */
    height: 100vh;
    /* Alto fijo del contenedor */
    overflow-y: scroll;
    /* Habilita el desplazamiento vertical */
}

.right .boton {
    width: 350px !important;
    height: 48px;
    color: #FF5417;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 46px;
    padding: 0px 20px;
    font-weight: normal;
    font-size: 18px;
    text-transform: uppercase;
    position: relative;
    fill: #FF5417;
    margin: auto auto;
    border: 1px solid;
    font-weight: bold;
}

.right .boton span {
    font-weight: bold;
}

.right .boton svg {
    width: 30px;
    margin-right: 15px;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.img-banner {
    background-image: url(../img/grata5.jpg);
    background-position: left center;
    background-size: cover;
    height: 500px;
    filter: grayscale(100%);
}

@media(max-width : 768px) {
    .grid-col-2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: .5rem;
    }

    .left img {
        height: auto;
        width: 90vw;
    }

    .right img {
        width: 90vw;
        height: auto;
    }

    .left .title {
        font-size: 4rem;
        margin-top: 5rem;
    }

    .left p {
        padding-right: 1rem;
        text-align: left;
    }
}

@media(max-width : 450px) {
    .left .title2 {
        font-size: 2rem !important;
        text-align: center;
        line-height: 1.3;
    }
    .right .boton {
        width: 210px !important;
    }
}

.menu-item {
    padding: 0rem 1rem 0px 1rem;
}

.menu-item:hover {
    background-color: #fafafa;
    color: #FF5417;
    transition: ease-in-out .5s;
}