*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow-x:hidden;
}

body{
    width: 100vw;
    height: 100vh;
    background-color: rgba(4,64, 121, 0.4);
}

.mainContent{
    width: 60%;
    height: auto;
    margin: auto;
    background: url("./Content/Sfondo/Sfondo_LandingPage.webp") no-repeat;
    background-size: 100% 100%;
}

.logoEdge{
    width: 20%;
    height: 20%;
    margin-left: 2%;
    padding-top: 2%;
    margin-bottom: 3%;
}

h1{
    width: 60%;
    font-weight: bolder;
    color: white;
    margin-left: 2%;
}

h2{
    font-weight: 400;
    color: white;
    margin-left: 2%;
    margin-bottom:2%;
}

.formMail{
    width: 70%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: rgba(4,63, 116, 0.6);
    margin: auto;
    margin-bottom: 5%;
}

input{
    width: 40%;
    padding: 2%;
    margin: 2%;
    
}
input::placeholder{
    color: black;
    font-weight: 600;
}

textarea{
    width: 90%;
    height: 13vh;
    margin-bottom: 2%;
    padding: 2%;
}
textarea::placeholder{
    color: black;
    font-weight: 600;
}

.buttonSend{
    width: 35%;
    height: 3vh;
    margin-bottom: 2%;
    background-color:white;
    font-weight: bold;
    cursor:pointer;
}

.containerLoghi{
    display: flex;
    justify-content: space-between;
    width: 75%;
    margin: auto;
    padding-top:1%;
    margin-bottom: 2%;
}

.logoRA{
    width: 25%;
    height: 25%;
}
.logoAB{
    width: 25%;
    height: 25%;
}

footer{
    background-color: white;
    padding-left: 2%;
    padding-top: 2%;
    padding-bottom: 2%;
}

footer h4{
    color: #044079;
}

footer small{
    color: #044079;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    *{
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }
    
    body{
        width: 100vw;
        height: 100vh;
        background-color: rgba(4,64, 121, 0.4);
    }
    
    .mainContent{
        width: 100vw;
        height: auto;
        
        background: url("./Content/Sfondo/Sfondo_LandingPage.png") no-repeat;
        background-size: cover;
    }
    
    .logoEdge{
        width: 40%;
        height: 40%;
        margin-left: 2%;
        padding-top: 2%;
        margin-bottom: 3%;
    }
    
    h1{
        width: 70%;
        font-weight: bolder;
        color: white;
        margin-left: 2%;
        font-size: 24px;
    }
    
    h2{
        font-weight: 400;
        color: white;
        margin-left: 2%;
        margin-bottom:2%;
        font-size: 18px;
    }
    
    .formMail{
        width: 70%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        background-color: rgba(4,63, 116, 0.6);
        margin: auto;
        margin-bottom: 2%;
    }
    
    input{
        width: 40%;
        padding: 2%;
        margin: 2%;
        
    }
    input::placeholder{
        color: black;
        font-weight: 600;
    }
    
    textarea{
        width: 90%;
        height: 13vh;
        margin-bottom: 2%;
        padding: 2%;
    }
    textarea::placeholder{
        color: black;
        font-weight: 600;
    }
    
    button{
        width: 35%;
        height: 2.5vh;
        margin-bottom: 2%;
    }
    
    .containerLoghi{
        display: flex;
        justify-content: space-between;
        width: 75%;
        margin: auto;
    }
    
    .logoRA{
        width: 45%;
        height: 45%;
    }
    .logoAB{
        width: 45%;
        height: 45%;
    }
    
    footer{
        background-color: white;
        padding-left: 2%;
        padding-top: 2%;
        padding-bottom: 2%;
    }
    
    footer h4{
        color: #044079;
        font-size: 13px;
    }
    
    footer small{
        color: #044079;
        font-size: 10px;
    }
}
