
.itata-gallery-section{
    
    h3{
        margin-bottom: 20px;
    }

}
.itata-gallery{
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fill , minmax(500px, 1fr));
    gap: 15px;
    max-width: 1800px;
    margin: 0 auto;
}

.itata-gallery-item{
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    img{
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 534px) {
    .itata-gallery-item{
        max-width: 90vw;
    }
}

.section-width{
   padding: 3% 5%;
}

.section-bg-gray{
    background-color: #e9e9e9;
}

.section-bg-white{
    background-color: #fff;
}

.hero-section{
    width: 100vw;
    overflow: hidden;
    position: relative;
}

.hero-content{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center start;
    padding: 0 50px;

    .content-item h1,
    .content-item p{
        color: #fff;
    }
}

.hero-overlay{
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, 100%);
    height: 70vh;
    img{
        width: 100%;
        height: 100%;
    }
}

.nav-logo.itata img{
    width: 90px;
    object-fit: contain;
}

.itata-gallery-info{

    position: absolute;
    bottom: 0;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 10px;

    img{
        width: 90px;
        height: 90px;
        object-fit: contain;
        order: 2;
    }

    p{
        position: relative;
        z-index: 10;
        color: #fff;
        font-size: 58px;
        order: 1;
        text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);

    }
}