:root {
    --color-font1: #252525;
    --color-font2: #002656;
    --color-font3: white;
    --background-menu: white;
    --backgroud-black: black;
    --Size-h1: clamp(1.4rem, 2.1vw, 1.8em);
    --Size-p: clamp(0.9rem, 1.3vw, 1.4em);
    --Size-area: clamp(0.rem, 0.7vw, 1rem);
}

/**********************************************************************/
/************************ S E C T I O N  F O O T E R **********************************/
/*#region footer*/
section:nth-of-type(1) {
    height: 100%;
}

.griditem5 {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr;
    width: 100vw;
    height: 150px;
}


/***************************Cookie*********************/
.wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    max-width: 365px;
    border-radius: 15px;
    text-align: center;
    padding: 25px 25px 30px 25px;
    box-shadow: 0 0 3px rgba(0,0,0,0.7);
    z-index: 1000;
    transform: translateX(400px);
    animation-duration: 2s;
    animation-name: surgir;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes surgir {
    to {
        transform: translateX(0);
    }
}

.hide {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wrapper img {
    max-width: 90px;
}

.wrapper .cookie-content {
    margin-top: 10px;
}

.cookie-content p {
    color: var(--color-font1);
    margin: 5px 0 20px 0;
}


.cookie-content .subtitle-cookie {
    text-align: left;
}

.cookie-content a {
    color: #006AE3;
}

.cookie-content .button-cookie {
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-cookie .btn-cookie {
    padding: 10px 20px;
    background: var(--color-font2);
    color: var(--color-font3);
    font-size: 18px;
    font-weight: bold;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 28px;
    margin: 0 10px;
}

    .button-cookie .btn-cookie:hover {
        background: white;
        color: var(--color-font2);
        border: 1px solid var(--color-font2);
    }


/*#endregion footer*/
