@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css');


:root{
    --text-color: rgba(0 0 0 / 1);
    --bg-color: rgba(255 255 255 / 1);
    --transparent-white-07: rgba(255 255 255 / 0.7);
    --transparent-black-03: rgba(0 0 0 / 0.3);
    --transparent-black-05: rgba(0 0 0 / 0.5);
    --transparent-black-07: rgba(0 0 0 /0.7);
    --transparent-black-09: rgba(0 0 0 /0.9);
    --color-grey: rgb(175, 175, 171);
    --color-white: rgba(255 255 255 /1);
    --color-amber: #D89B1A;          /* 216, 155, 26  */  
    --color-red: rgba(175 34 4 / 1); 
    --color-green: rgba(29 152 12 / 1);                                      
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;                                                    
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    p{
        font-weight: 500;
    }
    h1{
        font-weight: 300;
    }
    h2{
        font-weight: 500;
    }
    h3{
        font-weight: 500;
    }
}


body{
    display: block;
    max-width: 81.25rem;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0 auto;
}

body.dark{
    --bg-color: rgba(0 0 0 / 1);
    --text-color: rgba(255 255 255 / 1);
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 4rem;
    background: var(--bg-color);
    z-index: 100;
}

nav .navbar{
    display: flex;
    height: 100%;
    max-width: 81.25rem;
    font-size: 1em;
    margin: auto;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img{
    max-height: 6.5em;
    margin-top: 2.25em;
}

.navbar .toggle_modos{
    display: block;
    width: 1em;
    height: 100%;
    cursor: pointer;
    z-index: 100;

	.toggle_modos-icon{
	    margin-top: 0.5em;
	}
	.modos_text{
	    font-size: 0.75em;
	    margin: 0;
	}
}

.navbar .flags{
    display: flex;
    flex-wrap: wrap;
    width: 4.5em;
    justify-content: space-around;
    z-index: 100;
	.flags__item{
	    width: 1.55em;
	}
	img{
	    width: 1.3em;
	    cursor: pointer;
	}
}

.navbar .nav-links{
    height: auto;
    line-height: 4em;
    font-weight: 500;
}

.navbar .nav-links .menu{
    display: flex;
    height: 4em;

	li{
	    display: flex;
    	    position: relative;
    	    align-items: center;
	    list-style: none;
	    padding: 0 0.7em;

	    a{
		height: 100%;
		text-decoration: none;
		color: var(--text-color);
		white-space: nowrap;

	    	.arrow1{
			height: 100%;
  			width: 1.35em;
			text-align: center;
			transition: all 1s ease;
	    	}
	    }
	}
}

.navbar .nav-links .menu li:hover .arrow1{
     transform: rotate(180deg);
}

.navbar .nav-links .menu .sub-menu{
    position: absolute;
    top: 0;
    right: -6.5em;
    line-height: 1.5em;
    display: none;
    transition: all 1s ease;
}

.navbar .nav-links .menu .sub-menu li{
    padding: 0.625em;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.navbar .nav-links .menu li:hover .sub-menu{
    top: 4em;
    display: block;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.navbar .open-close{ 
    display: none;
    font-size: 2em;
    z-index: 100; 
}

.open-close{
    position: relative;
    width: 2em;
    height: 2em;
}

/* ================== MEDIA QUERY MENÚ ================ */

@media (max-width: 954px){

    .navbar{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar .logo img{
    	max-height: 5.5em;
    	margin-top: 2.25em;
    }

    .navbar .nav-links .menu li{
        padding: 0 0.438em;
    }

    .navbar .nav-links .menu li a{
        font-size: 0.938em;
    }
}

@media (max-width: 830px){
    nav{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navbar .nav-links{
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        max-width: 15.625em;
        width: 100%;
        line-height: 2.5em;
        transition: all 1s ease;
    }

    .navbar .logo{ 
        justify-content: left;
    } 

    .navbar .open-close{
        display: grid;
        justify-content: right;
        align-items: center;
        color: var(--text-color);
    }

    .navbar .bx-x{
        color: var(--text-color);
        display: none;
    }

    .navbar .nav-links .menu{
        display: block;
        position: relative;
        margin-top: 4em;
    }

    .navbar .nav-links .menu li{
        display: block;
        background-color: var(--bg-color);
        color: var(--text-color);
    }

    .navbar .nav-links .menu .sub-menu{
        display: none;
        position: initial;
        top: 0;
        right: 0;
        box-shadow: none;
    }

    .navbar .nav-links .menu li:hover .obras-sub-menu{
        display: none;
    }

    .navbar .nav-links .menu li .arrow1{
        vertical-align: middle;
        color: var(--text-color);
        line-height: 1.5em;
    }

    .navbar .nav-links .menu li:hover .arrow1{
        transform: rotate(0deg);
    }

    .navbar .nav-links.show1 .menu .sub-menu.obras-sub-menu{
        display: block;
    }

    .navbar .nav-links.show1 .menu li .arrow1{
        transform: rotate(180deg);
    }
}

@media (max-width: 370px){
    header, nav{
        max-width: 100%;
    }

   .navbar .nav-links{
        max-width: 100%;
    }

    .navbar .logo img{
    	max-height: 4.5em;
    	margin-top: 2.25em;
    }
}
/* ================ FIN MENÚ ============================= */
/* ================= MODAL NOVEDADES =================== */
/* 
.modal{
    position: absolute;
    display: flex;
    left: 0; top: 0;
    width: 100%;
    height: 100vh;
    background: var(--transparent-black-07);
    z-index: 10;
    animation: modal 2s 2s forwards;
    visibility: hidden;
    opacity: 0;
}
.novedades{
    margin: auto;
    max-width: 100%;
    aspect-ratio: 7/5;
    h2{
        width: 100%;
        text-align: center;
        color: var(--color-white);
        padding: 0.5em;
        margin-top: 2em;
    }
    img{
        aspect-ratio: 7/4;
        width: 100%;
    }
}
#cerrar{
    display: none;
}

#cerrar + label{
    position: fixed;
    display: flex;
    justify-content: center;
    justify-items: center; 
    align-items: center;
    border: 1px solid white;
    width: 5.5em;
    height: 2.5em;
    background: var(--color-amber);
    line-height: 1.5em;
    color: var(--color-white);
    font-weight: 700;
    cursor: pointer;
    top: 20%;
    right: 10%;
    z-index: 11;
    animation: modal 2s 2s forwards;
    animation-delay: 2s;
    visibility: hidden;
    opacity: 0;
}

#cerrar:checked + label, #cerrar:checked ~ .modal{
    display: none;
}

@keyframes modal{
    100%{
        visibility: visible;
        opacity: 1;
    }
}
 */

/* ================= FIN MODAL NOVEDADES ========================== */
/* ===================== PERSIANA ACORDEÓN INICIO ===================== */

.contenedor-galeria{
    margin-top: 4em;
    height: 100%;
    max-width: 81.25em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2em;
}

.contenedor-galeria .galeria{
    display: flex;
    width: 90em;
    margin: auto;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.contenedor-galeria .galeria .obra{
    position: relative;
    width: 2em;
    height: 47em;
    flex: 0.075;
    overflow: hidden;
    box-shadow: 0 0.313em 0.75em var(--transparent-black-05);
    transition: all 3s ease; 
}

.cortina{
    position: absolute;
    bottom: 0;
    left: 0;
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 47em;
    transition: 3s ease;
}

.cortina .titulo-cortina, .cortina .titulo-cortina2{
    text-align: center;
    font-size: 5em;
    font-weight: 300;
    transition: 3s ease;
}

.cortina .titulo-cortina3{
    display: none;
    opacity: 0;
}

.cortina .titulo-cortina{
    margin-top: 2.5em;
    margin-bottom: 1em;
}

.contenedor-galeria .galeria .obra img{
    position: relative;
    height: 47em;
    object-fit: cover;
}

.contenedor-galeria .galeria .obra:hover{
    flex: 1 1 0;
    cursor: pointer;
}

.contenedor-galeria .galeria .detalle-obra{
    position: absolute;
    flex-direction: column;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    padding: 0;
    background: var(--transparent-black-05);
    transition: 4s ease;
}

.contenedor-galeria .galeria .obra figcaption{
    width: 0;
    height: 0;
    padding: 0;
    transition: 5s ease;
}

.contenedor-galeria .galeria .detalle-obra a{
    color: transparent;
    visibility: hidden;
    opacity: 0;
    text-decoration: none;
    transition: 7s ease;
}

.contenedor-galeria .galeria .obra:hover .cortina, .contenedor-galeria .galeria .obra:hover .cortina.titulo-cortina{
    width: 0;
    height: 0;
    opacity: 0;
}

.contenedor-galeria .galeria .obra:hover .detalle-obra, .contenedor-galeria .galeria .obra:hover .detalle-obra figcaption{
    width: 12em;
    height: 4.5em;
    padding: 1em;
}

.contenedor-galeria .galeria .obra:hover .detalle-obra a{
    color: var(--color-white);
    visibility: visible;
    opacity: 1;
}


/* ================ Media query persianas acordeón ============ */


@media (max-width: 800px){
    .contenedor-galeria{
        margin-top: 4em;
        max-width: 100%;
        justify-content: center;
        align-items: center;
        height: 100vh;
        align-self: start;
    }

    .contenedor-galeria .galeria{
        display: flex;
        flex-direction: column;
        width: 0;
        width: 100%;
        height: 100%;
        gap: 0.7em;
    }

    .contenedor-galeria .galeria .obra{
        position: relative;
        width: 100%;
        height: 2em;
        overflow: hidden;
        transition: all 3s ease;
        align-items: center;
        flex: 0.075;
        transition: all 4s ease;
    }

    .contenedor-galeria .galeria .cortina{
        position: absolute;
        bottom: 0;
        left: 0;
        color: var(--color-white);
        background: rgba(0, 0, 0, 0.7);
        width: 100%;
        height: 5em;
        transition: 3s ease;
    }

    .contenedor-galeria .galeria .cortina .titulo-cortina, .contenedor-galeria .galeria .cortina .titulo-cortina2{
        opacity: 0;
        display: none;
    }

    .contenedor-galeria .galeria .cortina .titulo-cortina3{
        opacity: 1;
        display: flex;
    }

    .contenedor-galeria .galeria .cortina .titulo-cortina3{
        font-size: 2.75em;
        font-weight: 300;
        transition: 3s ease;
        width: 100%;
        height: 3em;
        padding: 0.55em 0;
        justify-content: center;
        letter-spacing: 0.35em;
    }

    .contenedor-galeria .galeria .obra img{
        position: relative;
        width: 100%;
        object-fit: cover;
        height: 100%;
        transition: all 4s ease;
    }

    .contenedor-galeria .galeria .obra:hover, .contenedor-galeria .galeria .obra:active{
        height: 100%;
        flex: 1 1 0;
        cursor: pointer;
    }

    .contenedor-galeria .galeria .detalle-obra{
        position: absolute;
        flex-direction: column;
        top: 0;
        right: 0;
        width: 0;
        height: 0;
        padding: 0;
        background: var(--transparent-black-05);
        transition: 4s ease;
    }

    .contenedor-galeria .galeria .obra figcaption{
        width: 0;
        height: 0;
        padding: 0;
        transition: 5s ease;
    }

    .contenedor-galeria .galeria .detalle-obra a{
        font-size: 0.8em;
        color: transparent;
        visibility: hidden;
        opacity: 0;
        text-decoration: none;
        transition: 5s ease;
    }

    .contenedor-galeria .galeria .obra:hover .cortina, .contenedor-galeria .galeria .obra:hover .cortina .titulo-cortina3{
        width: 0;
        height: 0;
        opacity: 0;
    }

    .contenedor-galeria .galeria .obra:hover .detalle-obra, .contenedor-galeria .galeria .obra:hover .detalle-obra figcaption{
        width: auto;
        height: 3.25em;
        padding: 0.4em;
    }

    .contenedor-galeria .galeria .obra:hover .detalle-obra a{
        color: var(--color-white);
        visibility: visible;
        opacity: 1;
    } 
}


/* ================ FIN Media query persianas acordeón ============ */

/* ============================= FOOTER ========================== */ 

footer{
    display: block;
    padding-top: 2em;
    border-top: 1px solid var(--color-amber);
}
.contenedor-footer{
    padding-left: 2rem;
    padding-right: 2rem;
}

footer .row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5em;
}

.footer-col h4{
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 1.7em;
    position: relative;
}

.footer-col h4::before{
    content: '';
    position: absolute;
    left:0;
    bottom: -0.625em;
    background-color: var(--color-amber);
    height: 2px;
    width: 3.125em;
}

.footer-col p{
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1.75;
}
.footer-col .p-footer-nombre{
    font-size: 1em;
    font-variant: small-caps;
}

.footer-col .social-links{
    display: flex;
    justify-content: justify;
    padding: 0.5em 0;
    color: var(--color-amber);
}

.footer-col .social-links a{
    transition: all 0.5s ease;
    padding-right: 1em;
}

.footer-col .social-links a svg{
    width: 2.25em; 
    height: 2.25em;
    padding: 0.25em;
    border: 1px solid #D89B1A;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover{
	scale: 1.1;
	background-color: var(--transparent-black-2);
}

.footer-col span:hover svg{
    scale: 1.1;
}

.contenedor-copyright{
    margin: 1.5em auto;
    padding: 2rem;
    border-bottom: 1px solid var(--color-amber);
    p{
        width: fit-content;
        font-size: 0.8em;
        font-weight: 500;
        margin: 0 auto;
        padding: 1em;
        text-align: center;
        border-top: 1px solid var(--color-amber);
    }
    a{
	text-decoration: none;
  	color: var(--text-color);
    }
}

/* ======================= Media query footer =================== */ 

@media (max-width: 800px){
    footer .row{
    	justify-content: left;
    }
}

/*========================== FIN FOOTER ==============================*/

/*======================== MAIN Y TITULOS H1 ===========================================*/

main{
    display: block;
    max-width: 81.25rem;
    width: 100%;
    margin-top: 4rem;
}

h1{
    font-size: 3em;
    font-weight: 300;
    color: var(--color-white);
    padding-top: 2.5em;
    padding-left: 1.5em;
    z-index: 7;
}

.titulo-biografia, .t_proyectos, .t_bronces, .t_grabados, .t_pinturas, .t_exposiciones, .t_entrevistas, .t_contacto, .t_terracotas, .t_corsi{
    width: 100%;
    height: 95vh;
}

/* ========================= BIOGRAFÍA =========================== */

.biografia .fondo-1{
    background: url('../img/Gabriela_por_Flor_Garduno.webp') no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.biografia .fondo-2{
    background: url('../img/lavori-sfondo.webp') no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
}

.biografia .fondo-3{
    background: url('../img/expo/2023-istallazione.webp') no-repeat;
    background-attachment: fixed;
    background-position: 50% 70%;
    background-size: cover;
}

h2.titulo-secundario{
    font-size: 1.75em;
    font-weight: 400;
    color: var(--text-color);
    margin-left: 2.75em;
    padding-top: 1.5em;
}

p.parrafo-biografia{
    font-size: 1em;
    font-weight: 500;
    color: var(-text-color);
    padding: 0.75em 4.5em 0.75em 4.5em;
    line-height: 1.85em;
    a{
        text-decoration: none;
        color: var(--text-color);
    }
    a:hover, a:focus, a:active{
        color: var(--color-amber);
    }
}

p.primero{
    padding-top: 2em;
}
p.final{
    padding-bottom: 3.5em;
}

/* ================ MEDIA QUERY BIOGRAFIA ============================*/

@media (max-width: 700px){
    h1{
	font-size: 2em;	
    }

    h2.titulo-secundario{
	    font-size: 1.5em;
     	margin-left: 2.7em;
    }

    p.parrafo-biografia{
	font-size: 1em;
    padding: 0.15em 4em 0.15em 4em;
	line-height: 1.7em;
    }

    p.primero{
    	padding-top: 1.25em;
    }

    p.final{
    	padding-bottom: 3.5em;
    }
}

@media (max-width: 430px){
    h1{
	font-size: 1.75em;
    }

    h2.titulo-secundario{
	font-size: 1.5em;
    	margin-left: 2.4em;
    }
    p.parrafo-biografia{
	font-size: 0.9em;
	line-height: 1.55em;
    }
    .biografia .fondo-2{
        background: url('../img/lavori-sfondo.webp') no-repeat;
        background-attachment: fixed;
        background-position: -30em 0;
        background-size: cover;
    }
}

/*=================  FIN BIOGRAFÍA ====================*/

/*===================== OBRAS POR ENCARGO ====================================*/

.fondo_encargo, .fondo_mapas{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100%;
}

.fondo_encargo video, .fondo_mapas video, .fondo_mapas iframe, .fondo_encargo iframe{
    grid-column: 1/-1;
    grid-row: 1/-1;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    padding: 0;
    z-index: 10;
}

.fondo_encargo .t_encargo, .fondo_mapas .t_mapas{
    grid-column: 1/-1;
    grid-row: 1/-1;
    height: min-content;
    z-index: 11;
}

.presentar_todas{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 2em;
    padding-left: 2em;
    padding-right: 2em;
    .ultima{
        grid-column: 2/3;
    }
}

.obras_todas{
    width: minmax(min-content, 300px);
    h2{
        margin: 1.5em 0;
    }
    figure{
        max-width: 95%;
        img{
            width: 100%;
            object-fit: cover;
        }
        figcaption{
            font-size: 0.9em;
            padding: 0.5em 0.25;
            margin-bottom: 1em;
            font-weight: 500;
            line-height: 1.75em;
        }
        a{
            font-size: 0.9em;
            text-decoration: none;
            color: var(--color-white);
            background: var(--color-grey);
            padding: 0.5em;
            margin:1em 0;
            transition: all 1s ease; 
        }
    }
}

.presentar_todas a:hover{
    background: var(--color-white);
    color: var(--color-amber);
    box-sizing: content-box;
    border: 1px solid var(--color-amber);
}

/*================== EL ABRAZO - ALAS Y OTRAS=====================================*/

.el_abrazo, .alas, .otras_comisiones{
    display: block;
    width: 100%;
    height: auto;
    h2{
	margin: 4.5em 0 1em 0;
        color: var(--text-color);
    }
    .video-alas, iframe, .video-abrazo{
        height: 80vh;
        width: 100%;
    }
}

.el_abrazo .nota{
    display: flex;
    justify-self: center;
    margin: 2em auto;
    width: 80%;
    height: 750px;
    border: 1px solid var(--color-amber);
}

.el_abrazo iframe{
    width: 80%;
}

.paso_a_paso, .paso_a_paso2{
    border: 1px solid var(--color-amber);
    width: 100%;
}

.paso_contenedor, .paso_contenedor2{
    display: grid;
    grid-template-columns: 70px 1fr 70px;
    gap: 1em;
    align-items: center;
    justify-items: space-evenly;
}

.paso_arrow, .paso_arrow2{
    background-color: var(--color-amber);
    border-radius: 50%;
    width: 35px;
    cursor: pointer;
    transform: all 1s ease;
}

.paso_arrow:hover, .paso_arrow2:hover{
    background: rgba(216 155 26 / 0.5);
}

.paso_body, .paso_body2{
    display: grid;
    max-width: 100%;
    grid-template-columns: 50% 50%;
    gap: 1.25em;
    grid-column: 2/3;
    grid-row: 1/2;
    opacity: 0;
    pointer-events: none;
}

.paso_body--show, .paso_body2--show{
    opacity: 1;
    pointer-events: unset;
    transition: opacity 1.5s ease-in-out;
}
.paso_fotos, .paso_fotos2{
    width: 90%;
    justify-self: center;
    align-content: flex-end;
    p{
        width: 100%;
        margin: 1em 0;
	    line-height: 1.7;
    }
}

.paso_img, .paso_img2{
    max-height: 400px;
    max-width: 90%;
    display: block;
    margin: 0 auto;
    align-self: baseline;
}

.fusione{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    img{
	margin: 0.2em;
    }
}

.paso_texts, .paso_texts2{
    max-width: 90%;
    margin: 0.25em 0.1em;
    h3{
	margin: 0.25em 0 1em 0;
    }
    p{
        width: 100%;
        margin: 1em 0;
	line-height: 1.7;
    }
}

.otras_comisiones{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    h2{
        width: 100%;
        margin: 2em 0;
    }
    .ritratto{
        height: 75vh;
        video, iframe{
            height: 100%;
            width: 100%;
/*          source{
                padding-bottom: 2rem;
            } */
        }
    }
}

.otras_int{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    figure{
        display: flex;
	    flex-direction: column;
        width: 48%;
        img{
            width: 100%;
        }
        figcaption{
            font-size: 0.9em;
	    font-weight: 500;
            margin: 1em 0.25em; 
            line-height: 1.75em;
            max-width: 100%;
        }
        a{
            max-width: 30%;
            font-size: 0.9em;
            text-decoration: none;
            text-align: center;
            color: var(--color-white);
            background: var(--color-grey);
            padding: 0.5em;
            margin: 2em;
            border-radius: 1em;
            transition: all 1s ease; 
        }
    }
}

.otras_comisiones .centro{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    figure{
        width: 70%;
    }
    img{
        max-width: 100%;
    }
}

.fundacion{
    display: block;
    width: 100%;
    margin: 0 auto;
    h2{
        text-align: left;
    }
    p{
        margin-bottom: 1em;
    }
    .pdf-en-linea{
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        span{
            height: 3em;
            padding: 0.5em;
        }
        a{
            width: fit-content;
            font-size: 0.9em;
            text-decoration: none;
            color: var(--color-white);
            background: var(--color-grey);
            padding: 0.5em 1em;
            margin: 1em 0;
            transition: all 1s ease;  
        }
    }
    a:hover{
        background: var(--color-white);
        color: var(--color-amber);
        border: 1px solid var(--color-amber);
        box-sizing: content-box;
    }
}

.otras_int span a:hover{
    background: var(--transparent-black-07);
    color: var(--color-amber);
}

.obras_encargo .ritratto-A{
    padding: 2em 0;
}

.papa-e-figlia-in-bici, .il-leopardo, .ritratto-etapas, .familia-etapas{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1em;
    align-items: space-between;
    border: 1px solid var(--color-amber);
    p{
	font-weight: 500;
   	padding: 2em 1em;
	line-height: 1.7em;
    }
    figure{
	padding: 1em;
	img{
	    width: 100%;
	}
	figcaption{
	    font-size: 0.9em;
	    font-weight: 500;
	    line-height: 1.5em;
	    padding: 0.5em 0;
	}
	a{
	    width: fit-content;
	    font-size: 0.9em;
            text-decoration: none;
            color: var(--color-white);
    	    background: var(--color-grey);
    	    padding: 0.5em 1em;
    	    margin: 1em 0;
    	    transition: all 1s ease;
	}
    }
    a:hover{
	    background: var(--color-white);
    	color: var(--color-amber);
        border: 1px solid var(--color-amber);
        box-sizing: content-box;
    }
}


/*=================== MEDIA QUERY DE OBRAS POR ENCARGO ===============================*/

@media(max-width: 1000px){
    .presentar_todas{
        grid-template-columns: repeat(2, 1fr);
        .ultima{
            grid-column: 1/2;
        }
    }
    .paso_contenedor, .paso_contenedor2{
        grid-template-columns: 40px 1fr 40px;
        align-items: center;
        gap: 1em;
    }

    .paso_body, .paso_body2{
        display: grid;
    	grid-template-columns: 1fr 1fr;
    	gap: 1em;
    	grid-column: 2/3;
    	grid-row: 1/2;
    	pointer-events: none;
        p{
            font-size: 0.95em;
            margin: 0;
            line-height: 1.4em;
            text-align: justify;
        }

        .paso_fotos, .paso_fotos2{
            width: 90%;
            justify-self: center;
            align-content: end;
            .paso_img, .paso_img2{
                display: block;
                object-fit: cover;
            }
        }
    }
    .paso_arrow, .paso_arrow2{
        width: 20px;
    }
    
    .paso_texts, .paso_texts2{
        max-width: 90%;
        h3{
        margin: 0.5em 0;
        }
    }
}

@media (max-width: 700px){
    .presentar_todas{
        grid-template-columns: 1fr;
    }
    .paso_contenedor, .paso_contenedor2{
        grid-template-columns: 30px 1fr 30px;
        align-items: flex-start;
        gap: 0.25em;
    }

    .paso_body, .paso_body2{
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, content);
        gap: 0.25em;
        justify-items: center;
        p{
            font-size: 0.9em;
            margin: 0;
            line-height: 1.6;
            text-align: justify;
        }
    }

    .paso_img, .paso_img2{
        display: block;
        object-fit: cover;
    }

    .paso_arrow, .paso_arrow2{
        width: 20px;
        align-self: center;
    }
    
    .paso_texts, .paso_texts2{
        h3{
        margin: 0.5em 0;
        }
    }

    .otras_int{
        flex-direction: column;	
            gap: 2em;
        figure{
	        width: 100%;
    	}
    }
   .otras_comisiones .centro{
	display: flex;
    	flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        figure{
	        width: 100%;
	    }
        img{
            max-width: 100%;
        }
    }
    .otras_comisiones .la-familia, .otras_comisiones .il-leopardo, .papa-e-figlia-in-bici{
	display: flex;
	flex-direction: column-reverse;
    }
    .el_abrazo .nota{
        width: 100%;
        height: 500px;
    }
    .ritratto-etapas, .familia-etapas{
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 440px){
    .paso_contenedor, .paso_contenedor2{
        grid-template-columns: 15px 1fr 15px;
        gap: 0.1em;
    }
    .obras_por_encargo{
        margin-top: 1em;
        padding-left: 0.1rem;
        padding-right: 0.1rem;
    }
    .paso_body, .paso_body2{
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, max-content);
        gap: 0.1em;
        justify-items: center;
	    align-items: normal;
        p{
            font-size: 0.9em;
            margin: 0;
            line-height: 1.6;
            text-align: left;
        }
    }

    .paso_img, .paso_img2{
        display: block;
        object-fit: cover;
        border: 1px solid var(--color-amber);
    }

    .paso_arrow, .paso_arrow2{
        width: 25px;
    }
    
    .paso_texts, .paso_texts2{
        h3{
        margin: 0 0 0.5em 0;
        }
    }
    .el_abrazo .nota{
        width: 100%;
        max-height: 450px;
    }
    .el_abrazo iframe{
        width: 90%;
        height: auto;
    }
}

/*===================== FIN OBRAS POR ENCARGO ====================================*/

/* ================ PROYECTOS - BRONCES - TERRACOTAS - MAPAS - GRABADOS - PINTURAS======================= */

.titulo_proyectos{
    text-align: left;
    width: 100%;
    font-weight: 500;
    padding: 2.5em 0 0.5em 0;
    scroll-margin-top: 3em;
}

.fondo_proyectos{
    background: url('../img/proyectos/Distanza-stacco.webp') no-repeat;
    background-attachment: fixed;
    background-position: 40% 10%;
    background-size: cover;
}

.galeria_proyectos, .galeria_bronces, .galeria_mapas, .galeria_grabados, .galeria_pinturas, .galeria_terracotas{
    display: flex;
    width: 100%;
    margin: 1.5em auto;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 4em;
}

.parrafo-galerias{
    padding: 2em;
    span{
        vertical-align: middle;
    }
    .introduccion{
    font-size: 1.75em;
    font-weight: 400;
    color: var(--text-color);
    padding: 1.5em 0;
    }
    .p-intro{
    font-size: 1em;
    font-weight: 500;
    color: var(-text-color);
    line-height: 1.85em;
    }
}

.foto_proyectos, .foto_bronces, .foto_mapas, .foto_grabados, .foto_pinturas, .foto_terracotas{
    width: 500px;
    height: auto;
    max-height: 700px;
    position: relative;
    transition: 0.6s ease;
    align-content: center;
    align-items: center;
    img{
        max-width: 100%;
        height: auto;
        max-height: 700px;
        object-fit: contain;
        display: block;
	margin: 0 auto;
    }
    .disponible{
        position: relative;
        display: flex;
        justify-self: flex-end;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--color-green);
    }
    .vendida{
        position: relative;
        justify-self: flex-end;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--color-red);
    }
}

.overlay{
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(216 155 26 / 0.5);  /* linear-gradient(to top, #0b476c96 0%, #406b84a1 100%); */
	width: 100%;
	height: 0;
	transition: 0.55s ease;
	overflow: hidden;
    h3 {
        color: var(--color-white);
        font-size: 20px;
        font-weight: 400;
        font-family: 'Poppins', sans-serif;
        text-align: left;
        padding: 1em 0 0.3em 1em;
    }
    p{
        font-size: 0.85em;
        line-height: 1.6em;
        color: var(--color-white);
        padding: 0.25em 1.5em;
    }
}

.foto_proyectos:hover .overlay, .foto_bronces:hover .overlay, .foto_mapas:hover .overlay, .foto_grabados:hover .overlay, .foto_pinturas:hover .overlay, .foto_terracotas:hover .overlay{
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.foto_proyectos:hover, .foto_bronces:hover, .foto_mapas:hover, .foto_grabados:hover, .foto_pinturas:hover, .foto_terracotas:hover{
    background: var(--transparent-black-03);
}

.fondo_bronces{
    background: url('../img/bronces/07-Coppia_in_bicicletta.webp') no-repeat;
    background-attachment: fixed;
    background-position: top;
    background-size:  cover;
}

.fondo_terracotas{
    background: url('../img/terracotas/2-Amanti_terracotta-40x70x46.webp') no-repeat;
    background-attachment: fixed;
    background-position: top;
    background-size:  cover;
}

.fondo_grabados{
    background: url('../img/grabados_dibujos/18-Abbraccio-1.jpg') no-repeat;
    background-attachment: fixed;
    background-position: right top;
    background-size: cover;
}

.fondo_pinturas{
    background: url('../img/pinturas/18-Ritratto-rosa.jpg') no-repeat;
    background-color: rgba(0 0 0 / 0.5);
    background-attachment: fixed;
    background-position: center 60px;
    background-size: contain;
}


/* ===================== MEDIA QUERY DE PROYECTOS Y OTROS ======================== */

@media (max-width: 700px){

    .fondo_proyectos{
        background: url('../img/proyectos/Abbraccio-Olio.webp') no-repeat;
    	background-attachment: fixed;
        background-position: top;
        background-size: cover;
    }
    .fondo_grabados{
    	background: url('../img/grabados_dibujos/18-Abbraccio-1.jpg') no-repeat;
	background-attachment: fixed;
    	background-position: center top 1.8em;
	background-size: cover;
	}
    .fondo_pinturas{
        background: url('../img/pinturas/03-Ritratto_in_rosso.jpg') no-repeat;
        background-attachment: fixed;
	background-position: center top 2.5em;
        background-size: cover;
    }
}

@media (max-width: 600px){
  .foto_proyectos, .foto_bronces, .foto_mapas, .foto_grabados, .foto_pinturas, .foto_terracotas{
      width: 300px;
      height: auto;
      img {
        width: 300px;
        height: auto;
      }
      p{
        font-size: 0.8em;
        line-height: 1.3em;
        padding: 0.15em 1.25em;
      }
      h3{
        font-size: 18px;
        padding: 0.7em 0 0.4em 0.9em;
      }
   }
}

/* ===================== FIN DE PROYECTOS ======================== */

/* ================== MEDIA QUERY OBRAS BRONCES =======================*/

@media(max-width: 600px){
    .fondo_bronces .t_bronces{
    	background: url('../img/bronces/22-tango.webp') no-repeat;
    	background-attachment: fixed;
    	background-position: top;
    	background-size:  cover;
    }
}
/* ===================== FIN DE BRONCES ======================== */
/* ===================== MEDIA QUERY DE TERRACOTAS ======================== */
@media(max-width: 700px){
    .fondo_terracotas{
        background: url('../img/terracotas/08-Madre-figlia-2.webp') no-repeat;
    	background-attachment: fixed;
        background-position: center;
        background-size: cover;
    }
}
/* ===================== FIN DE OBRAS ======================== */


/* ================== EXPOSICIONES =============================== */
.fondo_expo{
    background: url('../img/bronces/41-esposizioni-1.webp') no-repeat;
    background-attachment: fixed;
    background-position: top;
    background-size: cover;
}

.bloque-expo-personales{
    display: grid;
    max-width: 100%;
    grid-template-columns: 40% 60%;
    grid-auto-rows: minmax(50px, auto);
    margin-top: 2em;
    padding-left: 2rem;
    padding-right: 2rem;
}

.expo-titulo2{
    grid-column: 1/-1;
}

.expo-texto{
    grid-column: 1/2;
    border-bottom: 2px solid var(--color-amber);
    padding: 1em 0;
    h3{
        padding: 0.5em 0;
    }
    p{
        font-size: 1em;
        line-height: 1.8em;
        padding: 1em 0;
    }
}

.expo-img{
    grid-column: 2/3;
    border-bottom: 2px solid var(--color-amber);
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-auto-rows: minmax(70px, auto);
    max-width: 100%;
    justify-content: space-between;
    padding: 1em 0;
    p{
	font-size: 0.9em;
        padding: 0 0.5em 0.5em 0.5em;
    }
    .expo-nota-1{
	grid-column: 1/2;
	width: 100%;
	padding: 0.5em;
	img{
	    max-width: 100%;
	    object-fit: cover;
        padding: 0.25em 0;
	    }
    }
    .expo-nota-2{
        grid-column: 2/3;
        width: 100%;
        padding: 0.5em;
	img{
	    max-width:100%;
        object-fit: cover;
        padding: 0.25em 0;
	    }
	.nota-2, .nota-1{
        font-size: 0.9em;
	    width: 100%;
	    padding: 0.25em;
	    }
    }

    video, iframe{
        grid-column: 1/2;
        width: 100%;
        aspect-ratio: 16/9;
        justify-items: space-between;
        padding: 0.25em;
        source{
            grid-column: 1/2;
        }
    }
    .p-video{
        grid-column: 1/2;
        justify-self: left;
        padding: 0.5em 0.5em 0 0.5em;
    }
    a{
	display: block;
        font-size: 0.9em;
        text-decoration: none;
        color: var(--color-white);
    	background: var(--color-grey);
    	padding: 0.5em;
    	transition: all 1s ease; 
        box-sizing: content-box;
    }
}

.expo-img a:hover, .bloque-expo-colectivas .expo-colectivas-1 a:hover{
	background: var(--color-white);
    color: var(--color-amber);
    border: 1px solid var(--color-amber);
    box-sizing: content-box;
}

.bloque-expo-colectivas{
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-auto-rows: minmax(40px, auto);
    margin-top: 1em;
    gap: 2em;
    max-width: calc(100% - 2em);
    padding-left: 2rem;
    padding-right: 2rem;
    h2{
	margin: 2em 0 1em 0;
    }
    .expo-colectivas-1{
        grid-column: 1/2;
        h3{
            padding: 1em 0 0.2em 0;
        }
        p{
            font-size: 1em;
            line-height: 1.8em;
            padding: 0.1em 0;
        }
	    a{
	        font-size: 0.9em;
            text-decoration: none;
            color: var(--color-white);
    	    background: var(--color-grey);
    	    padding: 0.5em;
    	    margin: 1em 0;
    	    transition: all 1s ease; 
	    }
    }
    .expo-colectivas-2{
            grid-column: 2/3;
            h3{
                padding: 1em 0 0.2em 0;
            }
            p{
                font-size: 1em;
                line-height: 1.8em;
                padding: 0.1em 0;
            }
    }
    img{
        max-width: 70%;
        padding: 0.5em;
    }
}

.catalogos-pdf{
    display: block;
    margin: 2rem auto;
    padding: 2rem 0;
    border-top: 1px solid var(--color-amber);
    width: 95%;
    h2{
        width: 100%;
        margin: 2rem 0;
    }
}

 .catalogo-en-linea{
    width: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 3rem;
    justify-content: space-between;
    .catalogo-1{
        grid-column: 1/2;
        img{
            display: block;
            margin: 0 auto;
            aspect-ratio: 5/4;
            width: 350px;
            object-fit: cover;
        }
    }
    .catalogo-2{
        grid-column: 2/3;
        img{
            display: block;
            margin: 0 auto;
            width: 350px;
            aspect-ratio: 5/4;
            object-fit: cover;
        }
    }
} 

/*
.catalogo-en-linea{
    display: flex;
    flex-wrap: wrap;
    justify-items: space-between;
    justify-content: space-between;
    gap: 3rem;
    width: 100%;
     iframe, embed{
        width: 42%;
        aspect-ratio: 5/4;
        min-height: 300px;
    } 
}
*/

/* ======================= MEDIA QUERY DE EXPOSICIONES ======================= */

@media(max-width: 800px){
    .exposiciones{
	    padding: 0.25rem;
  	    p{
	        font-size: 0.9rem;
	        line-height: 1.5;
	        padding: 0.25rem 0;
	    }
    }
    .bloque-expo-personales{
    	display: grid;
    	max-width: 100%;
    	grid-template-columns: 100%;
    	grid-auto-rows: minmax(5px, auto);
    	margin-top: 2em;
    }

    .expo-titulo2{
        grid-column: 1/-1;
    }

    .expo-texto{
    	grid-column: 1/-1;
    	border-bottom: none;
    	padding: 1em 0 0.25em 0;
        h3{
            padding: 0.5em 0;
        }
        p{
            font-size: 0.9em;
            line-height: 1.5em;
            padding: 0.35em 0;
        }
    }

    .expo-img{
        grid-column: 1/-1;
        border-bottom: 2px solid var(--color-amber);
        max-width: 100%;
        justify-content: space-between;
        padding: 0.25em 0 1em 0;
        p{
            font-size: 0.8em;
            padding: 0 0.5em 0.5em 0.5em;
        }
        .expo-nota-1{
            grid-column: 1/-1;
            width: 100%;
            padding: 0.5em;
            img{
                max-width: 100%;
                object-fit: cover;
                padding: 0.5em;
                }
        }
        .expo-nota-2{
            grid-column: 1/-1;
            width: 100%;
            padding: 0.5em;
            img{
                max-width:100%;
            }
            .nota-2, .nota-1{
                font-size: 0.8em;
                width: 100%;
                padding: 0.25em;
                }
        }

        .video, iframe{
            grid-column: 1/-1;
            max-width: 100%;
            justify-self: left;
            padding: 0.25em;
        }
        .p-video{
            grid-column: 1/-1;
        }
        a{
            display: block;
            font-size: 0.8em;
            text-decoration: none;
            color: var(--color-white);
            background: var(--color-grey);
            padding: 0.5em;
            transition: all 1s ease; 
        }
    }
    
    .expo-img a:hover, .bloque-expo-colectivas .expo-colectivas-1 a:hover{
        background: var(--color-white);
        color: var(--color-amber);
    }

    .bloque-expo-colectivas{
        display: grid;
        grid-column: 1/-1;
        grid-auto-rows: minmax(40px, auto);
        margin-top: 1em;
        gap: 1em;
        max-width: calc(100% - 1em);
        h2{
        margin: 2em 0 1em 0;
        }
        .expo-colectivas-1{
            grid-column: 1/-1;
            h3{
                padding: 1em 0 0.5em 0;
            }
            p{
                font-size: 0.9em;
                line-height: 1.5em;
                padding: 0.25em 0;
            }
            a{
                font-size: 0.75em;
                    text-decoration: none;
                    color: var(--color-white);
                    background: var(--color-grey);
                    padding: 0.5em;
                    margin: 1em 0;
                    transition: all 1s ease; 
            }
        }
        .expo-colectivas-2{
                grid-column: 1/-1;
                h3{
                    padding: 1em 0 0.2em 0;
                }
                p{
                    font-size: 0.9em;
                    line-height: 1.5em;
                    padding: 0.25em 0;
                }
        }
        img{
            display: block;
            max-width: 300px;
            padding: 0.5em;
            margin: 0 auto;
        }
    }
     .catalogo-en-linea{
    width: 100%;
    display: grid;
    grid-template-columns: 100%;
    .catalogo-1, .catalogo-2{
        grid-column: 1/2;
        img{
            aspect-ratio: 5/4;
            width: 250px;
            object-fit: cover;
        }
    } 
}
/*
    .catalogo-en-linea{
        display: flex;
        justify-content: center;
        justify-items: center;
        width: 100%;
        gap: 2rem;
         iframe, embed{
            width: 90%;
            aspect-ratio: 4/3;
            height: 300px;
        } 
    }
*/
}

/* =========================== ENTREVISTAS ============================= */

.fondo_entrevistas{
    background: url('../img/entrevistas/foto_Gaby.webp') no-repeat;
    background-attachment: fixed;
    background-position: contain;
    background-size: cover;
}

.seccion_entrevistas{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    justify-items: center;
    gap: 3em;
    margin: 4em 0;
}

.entrevistas .video_link{
    border-radius: 5px;
    padding: 0.25em;
    width: 500px;
    height: auto;
    justify-items: center;
    transition: all 400ms ease;
    cursor: pointer;
    img{
        width: 430px;
        height: 260px;
        outline: 1px outline var(--color-amber);
        border-radius: 5px;
        display: block;
        margin: 0 auto;
    }

    h2{
        font-weight: 500;
        font-size: 1.25em;
	    text-align: center;
	    padding: 0.5em;
    }

    .parrafo_entrevistas{
        font-size: 0.9em;
        justify-self: center;
        padding: 1em 2.25em;
        line-height: 1.5em;
    }
}

.video_link:hover{
	background: rgba(216 155 26 / 0.7);
}

.video-overlay{
	position: fixed;
	inset: 0;
	background: rgba(216 155 26 / 0.7);
	opacity: 0;
	pointer-events: none;
	transition: all 400ms ease;
}

.video-overlay.active{
	opacity: 1;
	pointer-events: auto;
}

.video-popup{
	position: fixed;
	width: 80%;
	background: grey;
    margin-top: 4em;
	left: 50%;
	transform: translate(-50%, -100%);
	transition: all 400ms ease;
    span{
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        font-size: 1.2em;
        font-weight: 700;
        color: var(--color-white);
        width: 1.5em;
        height: 1.5em;
        background: var(--color-amber);
        top: 0;
        right: 0;
        z-index: 10;
    }
}

.video-overlay.active .video-popup{
	transform: translate(-50%, 0);
}

.video-popup iframe{
	width: 100%;
	aspect-ratio: 16/9;
}

@media(max-width:1025px){
    .fondo_entrevistas{
        background-position: 35% 3%;
    }
}

@media(max-width: 600px){
    .fondo_entrevistas{
        background: url('../img/entrevistas/entrevistas_2.webp') no-repeat;
        background-position: 30% 3%;
        background-size: cover;
    }

    .seccion_entrevistas{
        max-width: 100%;
        justify-content: center;
        justify-items: center;
        gap: 1.5em;
        margin: 4em 0;
    }
    
    .entrevistas .video_link{
        padding: 0.1em;
        width: 80%;
        height: auto;
        justify-items: center;
        transition: all 400ms ease;
        cursor: pointer;
        img{
            width: 80%;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        h2{
            font-size: 1.15em;
        }
        .parrafo_entrevistas{
            font-size: 0.85em;
            justify-self: center;
            padding: 5% 10%;
            font-weight: 500;
            line-height: 1.15em;
        }
    }

    .video-popup{
        width: 95%;
        margin-top: 8em;
        span{
            font-size: 0.7em;
            width: 1.8em;
            height: 1.8em;
            top: 0.5em;
            right: 0.5em;
        }
    }
}

/*====================== FIN ENTREVISTAS ===============================*/
/*===================== CORSI ================================= */
.fondo_corsi{
        background: url('../img/corsi/living-cuadros.webp') no-repeat;
        background-position: 30% center;
        background-size: cover;
}

.curso-1{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    justify-items: center;
    .titulo-curso, .t-comentario{
        color: var(--text-color);
        font-size: 1.75em;
        font-weight: 400;
        color: var(--text-color);
        margin-left: 1em;
        padding: 1em 0;
        padding-top: 2em;
    }


    figure{
        width: 100%;
        padding: 0 1.25em;
        img{
            width: 50%;
            display: block;
            margin: 0 auto;
        }
    }
}

.comentarios{
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    .alumnos{
        display: grid;
        grid-template-columns: 50% 50%;
        p{
            font-size: 0.9em;
            font-weight: 400;
            padding-left: 2em;
        }
        .img-alumnos{
            display: flex;
            img{
                width: 40%;
                -ms-wrap-flow: no-wrap;
            }
            .paola{
                width: 70%;
            }
        }
    }
}



@media(max-width: 830px){
    .comentarios{
    display: flex;
    direction: column;
    gap: 0.5em;
    .t-comentario{
        padding: 0.25em;
    }
    .alumnos{
        grid-template-columns: 100%;
        grid-template-rows: auto;
        p{
            font-size: 0.9em;
            font-weight: 400;
            padding: 0 2em 1em 2em;
        }
        .img-alumnos{
            display: flex;
            flex-direction: column;
            gap: 1em;
            img{
                width: 60%;
            }
            .paola{
                width: 70%;
            }
        }
    }
  }
}

@media(max-width: 600px){
    .fondo_corsi{
        background: url('../img/corsi/living-cuadros.webp') no-repeat;
        background-position: right center;
        background-size: cover;
    }

    .curso-1{
        figure img{
            width: 80%;
        }
        .t-comentario{
            padding: 0.25em 0;
        }
    }
}


/* ==================== CONTACTO ============================= */

.contenedor-contacto{
    display: block;
    margin-top: 7em;
    max-width: 100%;
}
.fondo_contacto{
  transform-style: preserve-3d;
  transform: rotate3d(1, 1, 1);
}

.fondo_contacto .t_contacto{
    background: url('../img/expo/Casa-Rusca-4.webp') no-repeat;
    background-attachment: fixed;
    background-size: cover;
    transform: translateZ(150px);
}

@media (max-width: 700px){
.fondo_contacto .t_contacto{
    max-width: 100%;
    background: url('../img/expo/Casa-Rusca-1-1024x683.webp') no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    transform: rotateY(30deg) translate(-100px 0 100px);
    }
}

/* ========================= COOKIES ========================== */

.cookies{
    margin-top: 4em;
    font-weight: 500;
    h2{
	padding: 1.5em 0;
    }
    p{
	line-height: 1.7em;
    }
    a{
        line-height: 2.5em;
        padding: 0.5em;
        background: rgba(216 155 26 / 0.7);
        text-decoration: none;
        color: var(--color-white);
        font-weight: 600;
        border-radius: 5em;
    }
}
