body{
    background-color: #c7d7d1;
    font-family: sans-serif;
}

header{
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
    max-width: 95vw;
}

header img{
    margin: 0 auto;
    width: 80vw;
    max-width: 500px;
    margin-top: 20px;
}

.grid-images{
    margin: 0 auto 100px;
    width: 80vw;
}

.grid-images img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-images img:nth-child(1){
    grid-column: auto / span 3;
    grid-row: 2;
}

.grid-images img:nth-child(2){
    grid-column: 2 / 4;
    grid-row: 1;
}

.grid-images img:nth-child(3){
    grid-column: 1;
    grid-row: 1;
}

.grid{
    margin-bottom: 170px;
    margin-left: 4vw;
    margin-right: 4vw;
}

.grid img{
    width: 100%;
    max-width: 800px;
    /* height: 100%;
    object-fit: cover; */
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.grid video{
    width: 100%;
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.grid h2{
    grid-column: 5;
    grid-row: 2;
}

.grid::after{
    content: '';
    background-color: gray;
    grid-column: 2 / 4;
    grid-row: 2 / 4;
    z-index: -1;
}


.grid-intro{
    width: 80vw;
    margin: 0 auto 90px;
}
.panel-intro{
    width: 65vw;
    margin-left: 10vw;
    margin-bottom: 50px;
}

.panel{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 80vw;
    margin: 0 auto 200px;
}

.panel img:nth-child(2){
    grid-column: auto / span 2;
}

.panel img:nth-child(3){
    grid-column: auto / span 2;
}

.panel img:nth-child(6){
    grid-column: auto / span 2;
}

.panel img:nth-child(7){
    grid-column: auto / span 2;
}

.panel img:nth-child(10){
    grid-column: auto / span 2;
}

.panel img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1000px){
    .grid-images{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 490px 500px 100px;
        gap: 15px;
    }

    .grid{
        display: grid;
        grid-template-columns: 5vw 50vw 25px 80px 1fr;
        grid-template-rows: 5vw auto 25px auto;
        margin-left: 0;
        max-width: 2000px;
    }

    .panel{
        gap: 20px;
    }

    header{
        display: grid;
        grid-template-columns: 70vw 1fr;
    }

    header img{
        width: 100%;
        grid-column: 2;
    }

    .footer-div{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-div div{
        padding: 2em;
    }

    .dir-tel{
        border-left: 1px solid #ccc;
    }
}


footer{
    /* position: fixed; */
    bottom: 0;
    width: 100%;
    height: 150px;
    background-color: black;
    color: white;
}

.footer-div{
    height: 100%;
    text-align: center;
}

.marixol-footer{
    padding-top: 3px;
}