@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,600,700');
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
}

header {
    background-color: #ffffff;
    color: #003399;
    padding: 10px;
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

header img {
    height: 50px;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin: 0 10px;
    position: relative;
}

nav a {
    text-decoration: none;
    color: #003399;
    padding: 10px;
    display: block;
}

section {
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
}

.content-section {
    max-width: 800px;
    margin: 0 auto;
}

footer {
    background-color: #137264;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-family: Poppins;
}

#products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 10px;
}

.product {
    flex: 0 1 calc(25% - 20px);
    border: 2px solid #137264;
    border-radius: 8px;
    padding: 10px;
    box-sizing: border-box;
    background-color: #003399;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    right: 20px; /* Posizionata nell'angolo destro */
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        background-color: #003399;
        position: fixed;
        right: 0;
        top: 60px;
        height: calc(100% - 60px);
        width: 200px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    nav ul.active {
        transform: translateX(0);
    }
    nav a {
        color: #ffffff;
    }

    nav li {
        margin: 10px 0;
    }

    #products {
        flex-direction: column;
        align-items: center;
    }

    .product {
        flex: 0 1 100%;
    }
}

@media screen and (max-width: 480px) {
    .product {
        flex: 0 1 100%;
    }
}

.dntTitleSchede{
    text-align: center;
    font-family: Poppins; font-weight: bold; font-size: 14pt;color:white;
}
.testoContenuto{
    font-family: Poppins; font-size: 10pt;color:black;
    text-align: left;
}
.genericcard{
    position: relative;
    background: #fff;
    width:400px;
    height: 600px;
    margin: 0 auto;
    border: 1px solid #093269;
    border-radius: 8px;
    box-shadow: 10px 10px 5px #dedede;
}
.genericcard .genericcontent{
    width: 400px;
    padding-left: 10px;
    padding-right: 4px;
    box-sizing: border-box;
    border-radius: 8px;
}

.genericcard .genericcontent a{
    /*display: inline-block;
    margin: 10px 0 0;
    padding: 10px 20px;
    text-decoration: none;
    border: 2px solid #262626;*/
    color: #093269;
    font-weight: 600;
}

.genericcard .genericcontent p{
    color:#093269;
    justify-content: right;
    width: 100%;
}
.genericcard .genericText{
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px 4px 0 0;
    background: #093269;
}
.genericcard .genericText h3{
    color: #fff;
    font-size: 1em;
}