*{
    font-family: 'Montserrat';
    font-size: 16px;
    color: #115a8a;
}
html, body{
    margin: 0px;
    padding: 0px;
}
h1{
    font-size: 36px;
    margin: 0px;
}
h2{
    margin-top: 0px;
    font-size: 24px;
}
.slider-wrapper {/* Contenedor principal del slider */
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}
.slider-container {
    width: 100%; /* Ocupa todo el espacio flexible disponible */
    overflow: hidden;
    position: relative; /* Ya no es necesario el 'position: relative' para los botones */
    margin: 0 10px; /* Margen para separar el slider de los botones** */
}
.slider-track {/* Pista que contiene todos los grupos */
    display: flex; /* Coloca los grupos uno al lado del otro */
    transition: transform 0.4s ease-in-out; /* Suaviza la transición al deslizar */
    width: fit-content; /* Asegura que la pista sea lo suficientemente ancha para todos los grupos */
}
.slide-group {/* Cada grupo de 4 imágenes */
    display: flex;
    flex-shrink: 0; /* Evita que los grupos se encojan */
    /* El ancho de este grupo debe ser igual al ancho de .slider-container */
    width: fit-content; /* **IMPORTANTE:** Define el ancho exacto del contenedor visible (ajusta según tu .slider-container) */
    /* Ej: si slider-container es 800px, slide-group debe ser 800px */
}
.slide-group a {
    /*width: 100%;
    height:fit-content; */
    width: 23%;  /*CADA ENLACE ocupa el 25% del grupo (igual que img antes)*/
    flex-shrink: 0; /* Evita que los enlaces se encojan */
    margin: 15px 10px;
    overflow: hidden;/* si quieres que el borde redondeado se aplique al contenedor del enlace */
    /* 3. Ajuste de visualización: */
    display: block; /* IMPORTANTE: Asegura que el enlace se comporte como un bloque */
    
}
/* La imagen debe ocupar el 100% de su contenedor (el enlace) */
.slide-group a img {
    width: 100%; /* Ocupa el 100% del ancho de su padre (el enlace) */
    height: 100%; /* Ocupa el 100% de la altura de su padre (si el padre tiene altura) */
    object-fit: cover; /* Mantiene el ajuste de la imagen */
    margin: 0; /* Elimina cualquier margen residual */  
    border-radius: 10px;
    /*border: 1px solid black;*/
}
/* botones de navegación */
.prev-btn, .next-btn {
    background: #FE6847;
    color: white;
    border-bottom: 3px solid #7e2613;
    margin: 10px;
    padding:15px 25px;
    cursor: pointer;
    flex-shrink: 0; /* Evita que los botones se encojan */
    font-size: 1.5em;
    border-radius: 5px;
}

.prev-btn:hover, .next-btn:hover {
    background: #FBB13C;
    border-bottom: 3px solid #B66D0D;
}

/*  CAPÇALERA   */
.titol h1{
    margin-bottom: 20px;
}
.titol h2{
    font-weight:400;
    font-size: 18px;
    text-align: center;
    margin-right: 20px;
}
.logo{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: white;
}
.imagotip{
    width: 200px;
    margin-right: 0px;
}
nav{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
nav .btn{
    background-color:#115a8a;
    color: white;
    border-radius: 7px;
    padding: 7px 5px;    
    width: 40px;
    text-align: center;
}
nav .fb{
 background-color: #115a8a;
}
nav .lk{
 background-color: #4b87d0;
}
nav .ins{
 background-color: #FE6847
}
nav .btn:hover{
    transform: scale(1.1);
}
nav i, footer i{
    color: white;
}
.idioma{
    top:20px;
    right: 60px;
    position: absolute;
    text-transform: uppercase;}
.passiu{
    text-decoration: none;
    padding: 3px 5px;
    border-radius: 5px;
}
.actiu{
    text-decoration: none;
    padding: 3px 5px;
    border-radius: 5px;
    background-color:#115a8a;
    color: white;
}
.passiu:hover{
    padding: 3px 5px;
    text-decoration: underline;
}
main{
    display:grid;
    grid-template-columns: 2fr 3fr 1fr;
    align-items: start;
    gap: 40px;
    background-color: #115a8a;
    padding: 30px 60px;
}

/*  SOBRE MI    */
.sobre{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.perfil{
    border-radius: 10px;
    position: relative;
    margin-bottom: 20px;
    background-image: url("../img/perfil.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 250px;
    width: 100%;
    box-shadow: 0px 0px 10px #115a8a;
}
.info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 30px 50px;
    box-shadow: 0px 0px 10px #115a8a;
}
.text p{
    font-size: 17px;
    text-align: justify;
    
}
.text h1{
    font-size: 25px;
    font-weight: normaL;
    text-align: center;
    margin: 30px 0px 40px 0px;
}
.destacat{
    font-size: 28px;
    font-weight: 600;
    color: #115a8a;
}
.curriculum{
    text-align: center;
    margin-bottom: 20px;
}
.curriculum p{
    margin: 0px 0px 10px 0px;
}
.curriculum button{
    width: 180px;
    height: 60px;
    background-color:#FE6847;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    margin-top: 20px;
    border-bottom: 3px solid #7e2613;
}
.curriculum button:hover{
    background-color: #FBB13C;
    border-bottom: 3px solid #B66D0D;
}

.icones img{
    width: 40px;
    margin: 10px 40px;
}

/*  PORFOLI     */
.porfoli{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.apartat{
    background-color: white;
    border-radius: 10px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0px 0px 10px #115a8a;
}
.porfoli a{
    text-decoration: none;
}
a .apartat{
    text-decoration: none;
    color: white;
    font-size: 25px;
}
.apartat:hover{
    transform: scale(1.07);
}
.web{
    background-color: #B66D0D;
}
.corp{
    background-color: #FBB13C;
}
.ilus{
    background-color: #FE6847;
}
.intro{
    background-color: white;
    padding: 40px;
    color:#115a8a;
    font-size: 16px;
    text-align: justify;
}
.intro:hover{
    transform: none;
}
.intro h2{
    text-align: left;
}
.iconografia{
    background-color: white;
    border-radius: 10px;
    padding: 50px;
    text-align: center;
}
.iconografia img{
    max-width: 50px;
    margin: 15px 20px 0px 20px;
}

/*  CONTACTE    */
.contacto{
    display: flex;
    flex-direction: column;
    background-color:#c0e2f7;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 0px 10px #115a8a;
    border: none;
}
.contacto p{
    margin-bottom: 30px;
}
form div{
    width: 100%;
    padding: 10px 0px;
}
input[type="text"], input[type="email"]{
    width: 200px;
    height: 30px;
    border: none;
    border-radius:5px;
    background-color: white;
}
input[type="checkbox"]{
    height: 20px;
    width: 20px;
    margin-right: 10px;
    border: none;
    border-radius:5px;
    background-color: white;
}
textarea{
    width: 270px;
    height: 150px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    background-color: white;
}
.fornom{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.formail{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.forcheck{
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    width: 100%;
}
.forbtn{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
    margin-top: 30px;
}
button{
    width: 180px;
    height: 60px;
    border: none;
    border-radius: 5px;
    background-color:#FE6847;
    color: white;
    border-bottom: 3px solid #7e2613;
}
button:hover{
    background-color:#FBB13C;
    border-bottom: 3px solid #B66D0D;
    color: white;
    cursor:pointer ;    
}
.d-none {
  display: none !important;
}
/*  FOOTER  */
footer{
    padding: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.credits{
    color:#115a8a;
}
.credits a{
    text-decoration: none;
    color:#115a8a;
}
.credits a:hover{
    text-decoration: underline;
}
.xarxes{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.xarxes a{
    background-color:#115a8a;
    color: white;
    border-radius: 7px;
    padding: 7px 5px;    
    width: 25px;
    text-align: center;
}
.xarxes a:hover{
    transform: scale(1.1);
}

/*  GALERIES PORFOLI    */
.galeria{
    margin: 0px;
    padding: 0px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 100%;
    height: 100%;
}
.capcalera{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px 30px 60px;
    width: 100%;
    margin: 0px;
}
.projecte .capcaweb, #web .capcalera{
    background-color: #B66D0D;
}
.explicacio{
    text-align: center;
}
.projecte .explicacio h1{
    font-size: 25px;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.explicacio a{
    color: white;
}
.projecte .capcacorp, #corporatiu .capcalera{
    background-color: #FBB13C;
}
.projecte .capcacorp h1{
    font-size: 25px;
    width: 100%;
    text-align: center;
}
.projecte .capcailu, #ilustracio .capcalera{
    background-color: #FE6847;
}
.projecte .capcailu h1{
    font-size: 25px;
    width: 100%;
    text-align: center;
}
.capcalera h1{
    font-weight: normal;
    color: white;
    
}
.capcalera img{
    width: 50px;
    position: absolute;
    top: 30px;
    right: 30px;
}
.capcalera img:hover{
    transform: scale(1.2);
}
.expo{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 220px;
    gap: 40px;
    padding: 60px;
    margin: 0px;
    width: 80%;
}
.expo a{
    text-decoration: none;
}
.item{
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin: 0px;
    background-color: white;
    border-radius: 10px;
    /*box-shadow: 0px 0px 10px #115a8a;*/
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.titular{
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    margin: auto;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #d0d0d0;
}
.titular p{
    font-size: 30px;
    margin: 0px 25px;
}
.expo img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px; 
    left: 0px;
    border-radius: 10px;
    border: 1px solid rgb(199, 199, 199); 
}
.expo a:hover > img{
    opacity: 0.1;   
}
.expo a:hover > .titular{
    display: flex;
}
.carruselOn{
    /*position: absolute;*/
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: auto;
    /*top: 0px;*/
    background-color: white;
}
.carruselOff{
    display:none;
}
.projecte{
    background-color: white;
}
.tancar{
    text-align: right;
    width: 100%;
    margin-top: 20px;
}
.tancar img{
    width: 50px;
    margin-right: 40px;
}
.tancar img:hover{
    transform: scale(1.2)
}
.contents{
    display: block;
    margin: 40px;
    padding-bottom: 60px;
}
.contents h2{
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    font-weight: normal;
} 
.centre{
    display: flex;
    flex-direction: column;
}
.centre2{
    /*grid-area: centre;*/
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin: 30px 150px;
    align-content: center;
    /*align-items:center;*/
    max-width: 80%;
}
.centre2 img{
    border: 1px solid #d0d0d0;
}
.centre img{
    max-width: 100%;
    border-radius: 10px;
    margin: 0px auto;
}
.centre2 p{
    font-size: 23px;
    padding: 0px 20px;
    margin-top: 0px;
    text-align: justify;
    line-height: 36px;

}
.centre2 p span{
    font-weight:600; 
    font-size:23px
}
.contactodetall{
    padding: 30px 60px;
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: center;
    align-items: top;
    background-color:#115a8a;
    
}
.contactodetall div{
    /*border: 1px solid white;*/
    color: white;
    
}
.contactclaim h2{
    color: white;
    font-size: 60px;
    font-weight:normal;
    margin-bottom: 0px;
}
.contactodetall div p 
{
    display: none;
}
#formdetall{
    display:grid;
    grid-template-areas:  "A B"
                        "C C"
                        "D D";
}
#formdetall label{  
    color: white;
}
#formdetall .fornom{grid-area: A;}
.fornom label{margin-right: 15px;}
.formail label{margin:0px 15px;}
#formdetall .formail{grid-area: B;}
#formdetall .formsg{grid-area: C;}
#formdetall .forbtn{grid-area: D;}
#formdetall .formsg textarea{
    width: 100%;
    height: 100%;
}
/*  POPUPS POLITIQUES */
.cookieson{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 30px;
    position: fixed;
    bottom: 0px;
    background-color:#115a8a;
    width: 100%;
}
.cookiesoff{
    display: none;
}
.aviso p{
    color: white;
}
.aviso p a{
    color: white;
}
.cookiesbtn button{
    text-decoration: none;
    color: white;
    margin: 20px;
    border-bottom: 3px solid #B66D0D;
    border-radius: 5px;
    background-color: #FBB13C;
}
.cookiesbtn button:hover{
    border-bottom: 3px solid #7e2613;
    background-color: #FE6847;
}
.textCookies{
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 20px;
    background-color: white;
    box-shadow: 0px 0px 10px #2a65ae;
    border-radius: 10px;
    width: 70vw;
    height: 80vh;
    overflow-x:hidden;
    overflow-y: auto;
    padding: 40px;
    margin-left:auto;
    margin-right: auto;
    left: 40px;
    right: 40px;
}
.textCookiesoff{
    display: none;
}
.privacidadon{
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 20px;
    background-color: white;
    box-shadow: 0px 0px 10px #115a8a;
    border-radius: 10px;
    width: 70vw;
    height: 70vh;
    overflow-x:hidden;
    overflow-y: auto;
    padding: 40px;
    margin-left:auto;
    margin-right: auto;
    left: 40px;
    right: 40px;
}
.privacidadoff{
    display: none;
}


/*  RESPONSIVE TABLET */
@media (width>768px) and (width<1199px){
    nav{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    nav .btn{
        background-color:#115a8a;
        color: white;
        border-radius: 5px;
        padding: 7px 5px;    
        width: 25px;
        height: 20px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
    }
    nav .btn i{
        transform:scale(0.7);
    }
    nav .fb{
        background-color: #115a8a;
    }
    nav .lk{
        background-color: #4b87d0;
    }
    nav .ins{
        background-color: #FE6847
    }
    .idioma{
        top:10px;
        right: 20px;
        position: absolute;
        text-transform: uppercase;
    }
    .slider-wrapper {
        display: none;
    }
    main{
        display: grid;
        grid-template-areas:    "sobre porfoli"
                                "contacte contacte";
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 30px 30px;
        background-color: #115a8a;
    }
    .sobre{ grid-area: sobre; }
    .icones img{
        width: 40px;
        margin: 0px 20px;
    }
    .info p{
        hyphens:auto;
    }
    .porfoli{ grid-area: porfoli; }
    .intro p{
        hyphens:auto;
    }
    .galeria{
        margin: 0px;
        padding: 0px;
        display:block;
        
        
        overflow-x:auto;
        overflow-y: auto;
        background-color: white;
        min-width: 100%;
        height: 100%;
    }
    .capcalera{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px 20px 30px;
        width: auto;
    }
    .capcalera h1{
        font-size: 34px;
    }
    .capcalera img{
        width: 45px;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .carruselOn{
        min-width: 100vh;
        min-height: 100vh;
        margin: auto;
        background-color: white;
    }
    .projecte{
        block-size: 100%;
        margin: 0px;
        padding: 0px;
        min-width: auto;
        height: auto;
    }
    .expo{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        width: auto;
        height: auto;
        margin: 0px;
    }
    .contents{
        display: block;
        margin: 40px;
        padding-bottom: 60px;
        height: auto;
    }
    .tancar{
        width: 100%;
        margin: 20px 0px 0px 0px;
        padding: 0px;
    }
    .centre{
        grid-area: centre;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        width: 100%;
        margin: 0px;
        padding: 0px;
        height: auto;
    }
    .centre img{
        width: 100%;
        border-radius: 10px;
        border: 1px solid rgb(199, 199, 199);
    }
    .contactodetall{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #formdetall{
        display: block;
    }
    #formdetall .formsg,
    #formdetall .fornom,
    #formdetall .formail{
        width: 100%;
    }
    #formdetall .formsg textarea{
        height: 100px;
    }
    #formdetall label{
        margin:0px;
    }
    .contacto{ grid-area: contacte; }
    form{
        display:grid;
        grid-template-areas:    "nom nom mail mail"
                                "msg msg msg msg"
                                "boto boto boto boto";
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 40px 2fr 40px;
        gap: 20px;
        padding-bottom: 30px;
    }
    .fornom{ grid-area: nom;}
    .fornom input{ width: 220px;}
    .formail{ grid-area: mail;}
    .formail input{width: 220px;}
    .formsg{ grid-area: msg;}
    textarea { width: 100%;}
    .forcheck{ grid-area: check;}
    .forbtn{ grid-area: boto; margin: 0px; margin-left: 20px; margin-right: 30px;}
    .cookieson{
        display: grid;
        grid-template-columns: 70% 30%;
    }
    .cookiesbtn{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }
    .cookiesbtn a{
        margin: 5px;
        padding:  5px 10px;
        width: 70px;
        text-align: center;
    }
    footer{
        flex-direction: column;
        justify-content: center;
        align-content: center;
        padding: 20px;
        gap: 20px;
    }
}
/*  RESPONSIVE MOBIL */
@media (max-width:767px){
    header{
        width: auto;
    }
    .logo{
        display: grid;
        grid-template-rows:90px 60px;
        background-color: white;
        justify-items:center;
        margin-top: 30px;
    }
    .atma-semibold{
        margin:50px 0px 0px 0px;
        padding: 0px;

    }
    .imagotip{
        display: none;
        grid-area: imago;
        width: 100%;
        margin-right: 30px;
    }
    nav{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin: 30px 0px 20px 0px;
        padding-bottom: 10px;
    }
    nav .btn{
        background-color:#115a8a;
        color: white;
        border-radius: 5px;
        padding: 7px 5px;    
        width: 25px;
        height: 20px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
    }
    nav .btn i{
        transform:scale(0.6);
    }
    nav .fb{
        background-color: #115a8a;
    }
    nav .lk{
        background-color: #4b87d0;
    }
    nav .ins{
        background-color: #FE6847
    }
    .idioma{
        top:10px;
        right: 20px;
        position: absolute;
        text-transform: uppercase;
    }
    .slider-wrapper {
        display: none;
    }
    main{
        display:grid;
        grid-template-areas:"sobre" 
                            "porfoli" 
                            "contacte";
        grid-template-columns: 100%;
        margin: 0px;
        padding: 20px;
        width: auto;
        background-color: #115a8a;
    }
    .sobre{grid-area: sobre; width:auto; }
    .info{
        padding: 30px 35px;
    }
    .info p{
        hyphens:auto;
    }
    .icones img{
        width: 40px;
        margin: 0px 15px;
    }
    .porfoli{grid-area: porfoli;}
    .iconografia img{
        width: 40px;
        margin: 0px 15px;
    }
    .intro p{
        hyphens:auto;
    }
    .galeria{
        margin: 0px;
        padding: 0px;
        display:block;
        top: 0px;
        overflow-x:auto;
        overflow-y: auto;
        background-color: white;
        width: 100%;
        height: 100%;
    }
    .capcalera{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px 20px 30px;
        width: auto;
    }
    .capcacorp, .capcailu, .capcaweb{
        padding: 70px 30px 20px 30px;
    }
    .capcalera h1{
        font-size: 28px;
    }
    .capcalera img{
        width: 35px;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .carruselOn{
        display: block;
        min-width: 100%;
        min-height: 100vh;
        margin: auto;
        background-color: white;
    }
    .projecte{
        block-size: 100%;
        margin: 0px;
        padding: 0px;
        min-width: 100%;
        height: auto;
    }
    .projecte .capcaweb h1{
        font-size: 20px;
        width: 100%;
        text-align: center;
    }
    .projecte .capcacorp h1{
        font-size: 20px;
        width: 100%;
        text-align: center;
    }
    .projecte .capcailu h1{
        font-size: 20px;
        width: 100%;
        text-align: center;
    }
    .contents{
        display: block;
        margin: 40px;
        padding-bottom: 60px;
        height: auto;
    }
    .tancar{
        width: 100%;
        margin: 20px 0px 0px 0px;
        padding: 0px;
    }
    .centre{
        display: flex;
        flex-direction: column;
        align-items:center;
    }
.centre2{
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0px;
    padding: 0px;
    align-content: center;
    align-items:center;
    max-width: 100%;
}
.centre2 img{
    border: 1px solid #d0d0d0;
}
.centre img{
    max-width: 100%;
    border-radius: 10px;
    margin: 0px auto;
    border: 1px solid rgb(199, 199, 199);
}
.centre2 p{
    font-size: 18px;
    padding: 0px;
    margin-top: 0px;
    text-align: justify;
    line-height: 30px;

}
.centre2 p span{
    font-weight:600; 
    font-size:18px
}
    /*.centre img{
        width: 100%;
        border-radius: 10px;
        
    }*/
    .expo{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        width: auto;
        height: auto;
        padding: 20px;
        margin: 0px;
    }
    .contactodetall{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .contactclaim h2{
        font-size: 45px;
    }
    #formdetall{
        display: block;
    }
    #formdetall .formsg,
    #formdetall .fornom,
    #formdetall .formail{
        width: 100%;
    }
    #formdetall .formsg textarea{
        height: 100px;
    }
    #formdetall label{
        margin:0px;
    }
    .contacto{grid-area: contacte; }
    .contacto p{
        hyphens:auto;
    }
    textarea{
        width: 100%;
    }
    input[type="text"], input[type="email"]{
        width: 190px;
    }
    footer{
        flex-direction: column;
        justify-content: center;
        align-content: center;
        padding: 20px;
        gap: 20px;
    }
    .credits{
        text-align: center;
    }
    .cookieson{
        display: flex;
        flex-direction: column;
        justify-content:center;
        align-items:center;
        padding: 20px 0px;
        position: fixed;
        bottom: 0px;
        background-color:#115a8a;
        width: 100%;
    }
    .cookiesbtn{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        justify-content: space-between;
        align-items: start;
    }
    .cookiesbtn a{
        margin: 10px 10px;
        text-align: center;
        padding: 10px 10px;
    }
    .aviso{
        margin-left: 20px;
    }
    
}

/*GOOGLE FONTS*/
.montserrat-name {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 65px;
  margin-right: 20px;
}

.atma-light {
  font-family: "Atma", system-ui;
  font-weight: 300;
  font-style: normal;
}

.atma-regular {
  font-family: "Atma", system-ui;
  font-weight: 400;
  font-style: normal;
}

.atma-medium {
  font-family: "Atma", system-ui;
  font-weight: 500;
  font-style: normal;
}

.atma-semibold {
  font-family: "Atma", system-ui;
  font-weight: 600;
  font-style: normal;
  font-size: 65px;
  margin-top: 40px;
  margin-right: 20px;
  line-height: 30%;
}

.atma-bold {
  font-family: "Atma", system-ui;
  font-weight: 700;
  font-style: normal;

}
