/* !INIZIO STILE GENERALE */
body, html
{
    background-color: #F5F6F8!important;
    overflow-x: hidden!important;
    scroll-behavior: smooth;
}

.b
{
    border: 1px solid red;
}

.line
{
    height: 5px;
    width: 150px;
    margin-top: -12px;
}

.l1
{
    height: 3px;
    width: 150px;
    background-color: #B4B4B4;
}

.l2
{
    top: -4px;
    right: -55px;
    position: relative;
    height: 5px;
    width: 40px;
    background-color: #46B2E4;
}

.res-img-icon
{
    width: 48px;
    height: 48px;
}

.logo
{
    width: 128px;
    height: 37px;

    filter: drop-shadow(rgb(255, 255, 255) 100vw 0px 0px); 
    transform: translateX(-100vw);
}

.hidden
{
    display: none!important;
}

.floating
{
    animation: up-down 2.5s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down
{
    50%
    {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100%
    {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@media only screen and (max-width: 768px) 
{
    .res-img-icon
    {
        width: 28px;
        height: 28px;
    }
}
/* !FINE STILE GENERALE */



/* !INIZIO STILE LOADER PER LA PAGINA */
.loader 
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999!important;
    background-color: #ffffff;
}
  
.jimu-primary-loading:before,
.jimu-primary-loading:after 
{
    position: absolute;
    top: 0;
    content: '';
}
  
.jimu-primary-loading:before 
{
    left: -19.992px;
}
  
.jimu-primary-loading:after
{
    left: 19.992px;
    -webkit-animation-delay: 0.32s !important;
    animation-delay: 0.32s !important;
}
  
.jimu-primary-loading:before,
.jimu-primary-loading:after,
.jimu-primary-loading 
{
    background: #1D4F91;
    -webkit-animation: loading-keys-app-loading 0.8s infinite ease-in-out;
    animation: loading-keys-app-loading 0.8s infinite ease-in-out;
    width: 13.6px;
    height: 32px;
}
  
.jimu-primary-loading 
{
    text-indent: -9999em;
    margin: auto;
    position: absolute;
    right: calc(50% - 6.8px);
    top: calc(50% - 16px);
    -webkit-animation-delay: 0.16s !important;
    animation-delay: 0.16s !important;
}
  
@-webkit-keyframes loading-keys-app-loading 
{
  
    0%,
    80%,
    100% 
    {
      opacity: .75;
      box-shadow: 0 0 #1D4F91;
      height: 32px;
    }
  
    40% 
    {
      opacity: 1;
      box-shadow: 0 -8px #1D4F91;
      height: 40px;
    }
}
  
@keyframes loading-keys-app-loading 
{
    0%,
    80%,
    100%
    {
      opacity: .75;
      box-shadow: 0 0 #1D4F91;
      height: 32px;
    }
  
    40% 
    {
      opacity: 1;
      box-shadow: 0 -8px #1D4F91;
      height: 40px;
    }
}
/* !FINE STILE LOADER PER LA PAGINA */



/* !INIZIO SCROLLBAR CHROME */
::-webkit-scrollbar 
{
	width: 8px;
	background-color: transparent;
}
  
::-webkit-scrollbar-thumb 
{
	background-color: #46B2E4;
}
  
::-webkit-scrollbar-corner
{
	background-color: #46B2E4;
}
/* !FINE SCROLLBAR CHROME */



/* !INIZIO STILE NAVBAR */
.navbar-own-settings
{
    top: 0;
    position: fixed!important;
    z-index: 999!important;
    background-color: transparent;
    width: 100%!important;
    box-sizing: border-box!important;
    transition: background 0.4s linear;
}

.navbar-own-settings-tit
{
    color: #ffffff!important;
    font-weight: bold;
    font-size: 25px!important;
    margin-left: 20px!important;
}

@media only screen and (max-width: 768px) 
{
    .navbar-own-settings-tit
    {
        font-size: 20px!important;
    }
}

.navbar-own-settings-sec
{
    color: #ffffff!important;
    font-weight: 600;
    font-size: 17.5px!important;
    margin-left: 20px!important;
}

.navbar-own-menu
{
    border: none!important;
}

.navbar
{
    padding-top: 12px!important;
    padding-bottom: 12px!important;
}

.burger 
{
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    display: block;
    margin-right: 20px;
}
  
.burger input 
{
    display: none;
}
  
.burger span 
{
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
  
.burger span:nth-of-type(1) 
{
    top: 0px;
    transform-origin: left center;
}
  
.burger span:nth-of-type(2) 
{
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}
  
.burger span:nth-of-type(3) 
{
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
}
  
.burger input:checked ~ span:nth-of-type(1) 
{
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
}
  
.burger input:checked ~ span:nth-of-type(2) 
{
    width: 0%;
    opacity: 0;
}
  
.burger input:checked ~ span:nth-of-type(3) 
{
    transform: rotate(-45deg);
    top: 28px;
    left: 5px;
}
/* !FINE STILE NAVBAR */


/* !INIZIO STILE ELEMENTI SOTTO LA NAVBAR */
.contenuto 
{
    position: relative;
    top: 0!important;
    background-image: url('./img/Prima.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.dati 
{
    position: relative;
    z-index: 2;
    color: #f5f5f5;
    text-align: center;
}

.sotto-nav-logo
{
    width: 1024px;
    height: 292px;
    padding: 15px
}
/* !FINE STILE ELEMENTI SOTTO LA NAVBAR */



/* !INIZIO STILE SEZIONE N1 */
.sezione-1
{
    margin-top: 80px;
    background-color: #ffffff;
}

.sezione-1-tit
{
    color: #38517E;
    font-weight: bold;
    font-size: 40px;
    text-align: center;
}

.sezione1-percentuali
{
    background-color: black;
    opacity: 0.8;
    padding: 30px;
}

.sezione1-container-card
{
    gap: 40px;
    height: 100%;
}

.sezione1-percentuali-def
{
    color: #0EDB43;
    font-weight: bold;
    font-size: 50px;
    text-align: center;
}

.container-perf-perc
{
    margin-bottom: -21.5px;
}

.important-text
{
    color: #0EDB43;
    font-weight: bolder;
}

.sezione1-percentuali-txt
{
    color: #ffffff;
    margin-top: -20px;
    font-size: 23px;
    text-align: center;
}

@media only screen and (max-width: 768px) 
{
    .sezione1-percentuali-def
    {
        font-size: 45px;
    }

    .sezione1-percentuali-txt
    {
        font-size: 20px;
    }
}

.immagini-sezione1
{
    padding: 12px!important;
}

.sezione-1-margine-finale
{
    height: 40px;
    width: 100%;
}
/* !FINE STILE SEZIONE N1 */



/* !INIZIO STILE SEZIONE N2 */
.contenitore-immagini-sezione2
{
    margin: 0px!important;
    padding: 0px!important;
}

.immagini-sezione2
{
    max-height: 800px;
    width: 100%!important;
    height: 100%;
}

.sezione2-tit-img1
{
    color: #38517E;
    font-weight: bold;
    font-size: 38px;
}

.sezione2-txt1-img1
{
    color: #38517E;
    font-size: 24px;
    text-align: justify;
}

.sezione2-txt2-img1
{
    color: #38517E;
    opacity: 0.7;
    font-size: 24px;
    text-align: justify;
}

@media only screen and (max-width: 768px) 
{
    .sezione2-tit-img1
    {
        font-size: 30px;
    }
    
    .sezione2-txt1-img1
    {
        font-size: 18px;
    }
    
    .sezione2-txt2-img1
    {
        font-size: 18px;
    }
}

.res-img-sez2
{
    width: 48px;
    height: 48px;
    margin: auto;
    margin-left: 0px;
}
/* !FINE STILE SEZIONE N2 */



/* !INIZIO STILE BOTTONE SCROLL IN SU */
#scrollToTopBtn 
{
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 42px;
    height: 40px;
    border: none;
    background-color: #46B2E4;
    color: #ffffff;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
#scrollToTopBtn:hover 
{
    opacity: 1;
}
/* !FINE STILE BOTTONE SCROLL IN SU */



/* !INIZIO STILE FOOTER */
.footer
{
    background-color: #1D4F91;
    width: 100%;
    padding: 10px;
    padding-bottom: 50px;
    margin-top: 10px;

    display: flex;
    justify-content: center;
    align-items: center;
}
/* !FINE STILE FOOTER */



/* !INIZIO STILE COOKIE */
.iub__us-widget
{
    display: none!important; 
    height: 0px!important;
}

.pr-ploicy 
{
    padding-right: 10px!important;
}

.pl-ploicy 
{
    padding-left: 10px!important;
}
/* !FINE STILE COOKIE */