/* Applica il font Inter al body con altezza font 16px */
body{font-family: 'Inter', sans-serif; font-size: 16;}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* Stili di link, headers e paragrafi */
a{text-decoration: none;}
h1, h2, h3, h4, h5, p{color: black;}
p{line-height: 28px; font-weight: 300;}

/* Stili delle classi di testo */
.big-text{font-size: 70px; font-weight: 900;}
.med-text{font-size: 40px;}
.normal-text{font-size: 20px;}
.small-text{font-size: 14px;}

.intro-text{text-transform: uppercase; font-size: 20px; font-weight: bold;}

/* Stile bottoni, con padding dx-sx 10 e up-down 20 */
.button{
    padding: 10px 28px; 
    height: 40px;
    background: #426a8e; 
    color: white; 
    border-radius: 20px;
    transition: 0.4s;
    box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 1px 2px rgba(0,0,0,.23);
}

.button:hover{
    background-color: white;
    color: #2e4a63;
    border: 2px solid #2e4a63;;
}

.button-hero{
    position: relative;
    top: 50px !important;
    padding: 10px 30px; 
    height: 70px;
    font-size: 24px;
    background: #426a8e; 
    color: white; 
    border-radius: 20px;
    transition: 0.4s;
    box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 1px 2px rgba(0,0,0,.23);
}

.button-hero:hover{
    background-color: white;
    color: #2e4a63;
}

.header-link {
    font-size: 16px;
    padding: 10px 28px !important; 
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(83, 152, 255, 0.082);
    border-radius: 25px;
    transition: 0.4s;
    margin-right: 10px;
}

.header-link:hover {
    background: #426a8e; 
    color: white; 
    box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 1px 2px rgba(0,0,0,.23);
}



/* Header */
.header{
    max-height: 80px;
    width: 100%;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;

    /* Distanza da bordi interni */
    padding: 40px 30px;

    /* Allinea in orizzontale */
    display: flex;
    align-items: center;

    /* Colore di sfondo */
    background-color: white;
}


.logo { 
    display: block;
    z-index: 1;
}

.logo img{height: 50px;}


/* Menu */
.menu {
    transition: all 1s cubic-bezier(.215, .61, .355, 1);
    z-index: 0;
    width: 100%;
    padding: 0px 5px;
    display: block;
    margin-left: 100px;
}


/* Allinea orizzontalmente link del menu */
.menu li{display: inline-block;}
/* Cambia colore ai link del menu, spaziatura e giustificazione */
.menu li a{color: black; padding: 15px; display: block;}


.cta {
    display: block;
}


/* Nascondi tasto menu nelle versioni desktop */
.menumobile{display: none;}





/* Hero */
.hero{
    position: relative;
    margin-top: 80px;
    height: 850px;
    display: flex; width: 100%; align-items: center;
    /* Vecchio sfondo con immagine */
    /* background: url('WaterGeminiBg.jpg') no-repeat center center; */
    background-size: cover;
    overflow: hidden;
}

/* Sfondo nero trasparente su video */
.hero:after{
    content: ' ';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0; left: 0;
    background: black;
    opacity: 0.3;
}

.hero__watergemini{
    width: 100%;
    max-width: 500px;
    margin-left: 100px;
    z-index: 1;
    position: relative;
}


.hero__watergemini .intro-text{color: white;}
.hero__watergemini .big-text{color: white;}

#img-hero {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    max-width: 130%;
    max-height: 130%;
    z-index: 0;
    transform: translateY(-50px);
}

.youtube-video{
    margin-top: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Poster */
.poster{
    display: flex;
    height: 100vh;
    width: 100%;
    align-items: center;
}

.iframe-DT {
    width: 100%; height: 90%
}

/* Water Gemini */
.waterg{
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    position: relative;
}   

.waterg__content{
    text-align: justify;
    width: 50%;
    padding-left: 30px;
}

.waterg__img .WGS{
    left: 50%;
    padding-top: 120px;
}


.logodorot{ 
    position: relative;
    width: 70%;
    height: 70%;
    padding-top: 50px;
}

.LogoDorot{
    width: 60%;
    height: 60%;
}



.poster__img{width: 65%; height: 100%; display: flex; align-items: center; overflow: hidden;}
/* Se l'immagine di sfondo è troppo grande la limito al box in cui è contenuta */
.poster__img img{object-fit: cover; height: 90%; transform: translateX(-100px);}
.poster__content{width: 35%; padding: 50px;}




/* BG cover */
.bg-cover {
    display: flex;
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* background: url('WaterGeminiBg.jpg') no-repeat center center; */
}

.infoDiv {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 40px);
    background-color: #263e53;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.people-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.1;
    position: absolute;

}


.aboutDiv{
    display: flex;
    z-index: 10 !important;
    position: relative;
    
}

.applications {
    display: flex;
    flex-direction: column !important;
    z-index: 10 !important;
    position: relative;
}

/* Sfondo nero trasparente su video */
.bg-cover:after{
    content: ' ';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0; left: 0;
    background: #263e53;
    opacity: 0.85;
}

.bg-cover__title{
    width: 50%;
    padding: 50px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.bg-cover__text{
    width: 50%;
    padding: 20px;
    z-index: 1;
}

.bg-cover__text h4 {margin: 10px auto;}






/* Griglie */
.grid{display: flex; max-width: 1700px; padding: 0 30px; margin: 0 auto; align-items: center;}
.grid .col{width: 100%;}



/* Sezione "servizi" */
.panel-blue{background: #426a8e; padding: 50px 30px; height: 600px; display: flex;}
.panel-blue .panel-blue__text{align-items: center;}
.panel-blue .panel-blue__dots{width: 60%;}
.panel-blue .panel-blue__text .col{text-align: justify;}
.dot{
    height: 200px; 
    width: 200px; 
    background: white; 
    border-radius: 100%;
    line-height: 200px;
    text-align: center;
    display: inline-block;
    margin-right: 100px;
    margin-bottom: 50px;
}

.dot .logo1{
    margin-top: 25px;
}

.dot .logo2{
    margin-top: 45px;
}

/* Processo Digital Twin */
.DTdescription {text-align: justify;}

#cell-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1
}

.DT-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #426a8e;
    border-radius: 100%;
    width: 250px;
    height: 250px;
    z-index: -1;
    color: white;
}

.cell-logo {
    width: 65%;

}

/* Footer */
.footer{
    padding: 10px;
    position: relative;
    top: 100px;
    background: #426a8e;
    height: 100%;
    width: 100%;
}

.footer .col{text-align: center;}
.footer h4{margin-bottom: 5px;}


/* Helpers, per aggiungere margini ai box (si aggiungono nelle classi) */
.mt-1{margin-top: 30px;}
.mt-2{margin-top: 100px;}
.mt-3{margin-top: 150px;}

.tw{color: white;}

.a-right{text-align: right;}

.mt-big-0{margin-top: 0;}
.mb-big-0{margin-bottom: 0;}





/* Codice per regolarizzare i box */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
            box-sizing: border-box;

}