/*
Theme Name: Kreema Studio
Theme URI: 
Author: Kreema Studio team
Author URI: 
Description: Kreema Studio theme
Version: 0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, one-column, two-columns, right-sidebar, flexible-width, custom-header, custom-menu, editor-style, featured-images, sticky-post, translation-ready
Text Domain: ks

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

}

body{
    font-family: 'Comfortaa';
    background-color: #ffffff;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
  height: 8px;
  background-color: rgba(48, 132, 242, 0.3); /* or add it to the track */
}

::-webkit-scrollbar-thumb {
    background: #026fff;
  }

.mouseIcon{
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 1.5rem;
    transition: all 0.6s ease;
    transform: scale(0.7, 0.7) translateX(-50%);
}

.circle-1, .circle-2 {
    animation: scroll 2s infinite linear;
    opacity: 0;
  }
  
  .circle-2{
    animation-delay: 1s;
  }
  
  @keyframes scroll {
    0% {
      cy: 4;
      opacity: 0;
    }
    45%, 55% {
      opacity: 1;
      cy: 9;
    }
    100% {
      cy: 14;
      opacity: 0;
    }
  }
  
  .scrolled{
      transform: scale(0.5,0.5) translateX(-50%);
      opacity: 0;
  }

  .heroScrolled{
    opacity: 0;
  }

/* Header Style 
-------------------------------------*/ 



header{
    position: absolute;
    z-index: 1000;
    top: 0;
    left:0;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 10%;
}

.linksMain{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
}

.link{
    text-decoration: none;
    color:white;
    font-size: 14px;
}

.link{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.link::before{
    content: '';
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    display: flex;
    position: absolute;
    border-radius: 1000px;
    margin-top: 2.5rem;
    opacity: 0;
    transition: all 0.5s ease;
}

.link:hover::before{
    opacity: 1;
}

.linkCTA{
    text-decoration: none;
    color: white;
    border: 2px solid white;
    padding: 1.3rem 2.3rem;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.linkCTA:hover{
    background: rgba(255,255,255, 0.3);
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

    .mouseIcon{
        display: none;
    }

    header{
        justify-content: center;
    }

    .linksMain{
        display: none;
    }
    
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
   
    

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
   
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1200px) {
    
}
















/* Hero Style 
-------------------------------------*/ 

.heroMain{
    padding: 10% 10%;
    width: 100vw;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    gap: 2rem;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.heroTitle{
    font-size: 55px;
    max-width: 1200px;
    line-height: 68px;
    max-width: 65%;
    color: white;
    font-weight: 500;
    text-align: left;
}

.heroSubtitle{
    color:white;
    margin-bottom: 1.5rem;
    font-weight: 400;
    width: 60%;
}

.heroLinks{
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.heroLinks a{
    text-decoration: none;
}


.mainCTA{
    background: white;
    color: #3084F2;
    padding: 1.3rem 2.3rem;
    border-radius: 10px;
    font-size: 14px;
    border: 2px solid #ffffff;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    text-decoration: none;
}

.mainCTA:hover{
    background: rgba(255,255,255, 0.3);
    color: #ffffff;
}

.secondaryCTA{
    background: none;
    color: #ffffff;
    padding: 1.3rem 2.3rem;
    border-radius: 10px;
    font-size: 14px;
    border: 2px solid #ffffff;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.secondaryCTA:hover{
    background: rgba(255,255,255, 0.3);
    color: #ffffff;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

    .heroMain{
        padding: 10% 10%;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: center;
        gap: 1rem;
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    }
    
    .heroTitle{
        font-size: 25px;
        max-width: 1200px;
        line-height: 33px;
        max-width: 100%;
        color: white;
        font-weight: 500;
        text-align: center;
    }
    
    .heroSubtitle{
        color:white;
        font-size: 12px;
        margin-bottom: 1.5rem;
        font-weight: 400;
        text-align: center;
        line-height: 20px;
        width: 100%;
    }
    
    .heroLinks{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .heroLinks a{
        text-decoration: none;
    }
    
    
    .mainCTA{
        background: white;
        color: #3084F2;
        padding: 1.1rem 2.1rem;
        border-radius: 10px;
        font-size: 12px;
        border: 2px solid #ffffff;
        transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        text-decoration: none;
    }
    
    .mainCTA:hover{
        background: rgba(255,255,255, 0.3);
        color: #ffffff;
    }
    
    .secondaryCTA{
        background: none;
        color: #ffffff;
        padding: 1.1rem 2.1rem;
        border-radius: 10px;
        font-size: 12px;
        border: 2px solid #ffffff;
        transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);

    }
    
    .secondaryCTA:hover{
        background: rgba(255,255,255, 0.3);
        color: #ffffff;
    }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}























/* Info Style 
-------------------------------------*/ 

.infoMain, .usbimMain{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10rem 10%;
    gap: 1.5rem;
}

.usbimImg{
    border: 2px solid #3084F2;
    border-radius: 20px;
    padding: 25px;
}

/* Sicurezza Section
------------------------------*/

.sicurezzaMain{
    padding: 10rem 10%;
    display: flex;
    flex-direction: column;
}

.usbimImg {
    width: 100%;
    margin-top: 1rem;
}


.usbimTitle{
    font-size: 25px;
    color: #595959;
    text-align: center;
    font-weight: 600;
    margin-top: 3rem!important;
}

.usbimTitle span{
    color: #3084F2;
}

.usbimStats{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
    margin-top: 2rem;
    gap: 6rem;
    margin-bottom: 12rem;
}

.usbimstat{
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: center;
    margin-top: 1rem;

}

.usbimstat span{
    color: #595959;
    font-size: 45px;
    font-weight: 400;
    margin-top: .5rem;
}

.usbimstat img{
    width: 80px;
    margin-bottom: .5rem;;
}

.usbimstat div{
    text-align: center;
    color: #3084F2;
    font-size: 18px;
    font-weight: 600;
}

.infoTitle{
    color: #595959;
    font-weight: 600;
}

.infoTitle span{
    color: #3084F2;
}

.infoDescription{
    color: #868686;
    text-align: center;
    max-width: 650px;
    font-size: 16px;
    line-height: 27px;
    font-weight: 300;
}

.thirdCTA{
    color: white;
    background: #3084F2;
    padding: 1.3rem 2.3rem;
    text-decoration: none;
    border: 2px solid #3084F2;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.thirdCTA:hover{
    background: rgba(48, 132, 242, 0.3);
    color:#3084F2;
}

.noMargin{
    padding-top: 0rem!important;
    padding-bottom: 0rem!important;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

    .infoTitle{
        text-align: center;
        font-size: 16px;
        line-height: 25px;
    }

    .infoDescription{
        font-size: 12px;
        line-height: 20px;
    }

    .infoMain img{
        width: 40px;
    }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .usbimImg {
        width: 60%;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    
}























/* Soluzioni Style 
-------------------------------------*/ 

.soluzioniMain{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding:  5rem 10%;
    gap: 2rem;
}

.soluzioniText{
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    max-width: 450px;
}

.textInfo{
    color:#3084F2;
    background-color: rgba(48, 132, 242, 0.3);
    margin-right: auto;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.textTitle{
    font-size: 45px;
    line-height: 60px;
    color: #595959;
}

.textTitle span{
    color: #3084F2;
}

.textDescription{
    color: #868686;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
}

.soluzioniText .thirdCTA{
    margin-right: auto;
}

.soluzioniGrid{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


.rowGrid{
    display: flex;
    flex-direction: row;
    gap: 1.5rem;

}

.card{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 70%;
    padding: 1.5rem 2rem;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.card:hover{
    transform: scale(1.05,1.05)!important;
}

.cardTitle{
    font-size: 18px;
    color: #595959;
}

.cardDescription{
    font-size: 13px;
    line-height: 20px;
    color:#868686;
}

.cardCTA{
    color:#3084F2;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 15px;
    margin-top: 1rem;;
}

.cardIcon{
    width: 65px;
    margin-bottom: 1rem;;
}



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    
    .soluzioniMain{
        display: flex;
        flex-direction: column-reverse;
        padding:  2.5rem 10%;
        gap: 3rem;
    }

    .textTitle{
        font-size: 30px;
        line-height: 40px;
        color: #595959;
    }

    .textInfo{
        font-size: 10px;
    }
    
    .textTitle span{
        color: #3084F2;
    }
    
    .textDescription{
        color: #868686;
        font-size: 14px;
        font-weight: 300;
        line-height: 24px;
    }

    .soluzioniText .thirdCTA{
        margin-right: auto;
        font-size: 14px;
        padding: 1.1rem 2.1rem;
    }
    

    .rowGrid{
        flex-direction: column;
    }

    .card{
        width: 100%;
    }

    .cardTitle{
        font-size: 14px;
        color: #595959;
    }
    
    .cardDescription{
        font-size: 11px;
        line-height: 20px;
        color:#868686;
    }
    
    .cardCTA{
        color:#3084F2;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 15px;
        margin-top: 1rem;;
    }
    
    .cardIcon{
        width: 55px;
        margin-bottom: 1rem;;
    }
    

    
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1400px) {
    .soluzioniMain{
        display: flex;
        flex-direction: column-reverse;
        padding:  2.5rem 10%;
        gap: 3rem;
    }

    .textTitle{
        font-size: 30px;
        line-height: 40px;
        color: #595959;
    }

    .textInfo{
        font-size: 10px;
    }
    
    .textTitle span{
        color: #3084F2;
    }
    
    .textDescription{
        color: #868686;
        font-size: 14px;
        font-weight: 300;
        line-height: 24px;
    }

    .soluzioniText .thirdCTA{
        margin-right: auto;
        font-size: 14px;
        padding: 1.1rem 2.1rem;
    }
    

    .rowGrid{
        flex-direction: column;
    }

    .card{
        width: 100%;
    }

    .cardTitle{
        font-size: 14px;
        color: #595959;
    }
    
    .cardDescription{
        font-size: 11px;
        line-height: 20px;
        color:#868686;
    }
    
    .cardCTA{
        color:#3084F2;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 15px;
        margin-top: 1rem;;
    }
    
    .cardIcon{
        width: 55px;
        margin-bottom: 1rem;;
    }
    
}
























/* Banner Style 
-------------------------------------*/ 

.bannerMain{
    padding: 10rem 10%;
}

.bannerWrapper:hover{
    transform: scale(1.01,1.01);
}

.bannerWrapper{
    padding: 4rem 5rem;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.bannerWrapper img{
    margin-bottom: .5rem;
}

.bannerTitle{
    font-size: 40px;
    max-width: 900px;
    margin-bottom: 2.5rem;
    line-height: 55px;
    font-weight: 500;
}

.bannerSpan{
    font-size: 25px;
    margin-bottom: 2rem;
}

.bannerLinks{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
}

.bannerCTA{
    color: #3084F2;
    background: #ffffff;
    padding: 1.3rem 2.3rem;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.bannerCTA:hover{
    background: rgba(255,255,255, 0.3);
    color: #ffffff;
}



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .bannerMain{
        display: none;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    
}























/* Rivoluzione Style 
-------------------------------------*/ 

.rMain{
    padding: 10rem 10%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 5rem;
}

.rText{
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    max-width: 550px;

}
    
.rCTA{
    margin-right: auto;
}

.rImageImg{
    width: 550px;
}



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

    
    .rMain{
        flex-direction: column;
    }

    .rImageImg{
        margin-top: 3rem;
        width: 350px;
    }
    
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 1200px) {
    .rMain{
        flex-direction: column;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    
}
























/* Grafici Style 
-------------------------------------*/ 

.gMain{
    padding: 0 10%;
    padding-top: 15rem;
    display: flex;
    flex-direction: column;
    gap: 10rem;
    margin-bottom: 10rem; width: 100%;
}

.gText{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    

}

.gTitle{
    font-size: 40px;
    color: white;   
    text-align: center;
    width: 500;  
}

.gInfo{
    color:#ffffff;
    background-color: rgba(255, 255, 255, 0.12);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.gDescription{
    text-align: center;
    color: white;
    font-size: 23px;
    line-height: 35px;
    width: 850px;

}

.gImage img{
    transform: translateY(2px) translateX(-18px);
}

.gImage{
    display: flex;
    justify-content: center;
}



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

    .gImage img{
        width: 100%;
        transform: translateY(2px) translateX(-12px);

    }

    .gMain{
        padding: 0 10%;;
        padding-top: 6rem
    }

    .gTitle{
        font-size: 30px;
        color: white;   
        text-align: center;
        line-height: 40px;  
        width: 100%;
    }
    
    .gInfo{
        color:#ffffff;
        background-color: rgba(255, 255, 255, 0.12);
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 12px;
    }
    
    .gDescription{
        text-align: center;
        color: white;
        font-size: 12px;
        line-height: 35px;
        display: none;
    }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    
}
























/* Controllo Main
-------------------------------------*/

.cMain{
    padding: 10rem 10%;
    display: flex;
    flex-direction: column;
    gap: 5rem;;
}

.cText{
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    
}

.cDesc{
    width: 850px;

}
    
.cCards{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin-top: 3rem;;
    gap: 5%;
}

.cCard{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.imgCont{
    background-color: rgba(48, 132, 242, 0.3);
    padding: 10px;
    margin-right: auto;
    border-radius: 1000px;
    display: grid;
    align-content: center;
}

.cardImg{
    width: 90px;
    padding: 10px;
    border-radius: 1000px;

    animation: cardI 3s linear infinite;
}

@keyframes cardI {
    0%{
        transform: scale(1.3,1.3);
    }

    50%{
        transform: scale(1.0,1.0);
    }
    100%{
        transform: scale(1.3,1.3);
    }
}

.cCard h3{
    font-size: 32px;
    color:#3084F2;
    font-weight: 500;
    margin-bottom: 1rem;
    margin-top: .5rem;
}

.checkSpan{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    color: #595959;
}

.cCTA{
    margin-right: auto;
    margin-top: 1rem;
}



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    
    .cMain{
        padding: 5rem 10%;
    }

    .cDesc{
        max-width: 100%;;
    }

    .cCards{
        flex-direction: column;
        gap: 5rem;

    }

    .cCTA{
        font-size: 12px;
        padding:1.1rem 2.1rem;
    }

    .cCard{
        width: 100%;
    }

    .cardImg{
        width: 80px;
        padding: 10px;
        border-radius: 1000px;
    
        animation: cardI 3s linear infinite;
    }

    .cCard h3{
        font-size: 22px;    ;
    }

    .checkSpan span{
        font-size: 12px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    
}

























/* Corrieri Main
-------------------------------------*/

.coMain{
    padding: 10rem 10%;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.coText{
    display: flex;
    flex-direction: column;
    text-align: right;
    gap: 1.3rem;
}

.co{
    margin-right: 0;
    margin-left: auto;
}

.coCards{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.coCards img{
    width: 50%;
}

.coCard h3{
    font-size: 25px;
    color: #595959;
    margin-bottom: 1rem;;
}

.coCard{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 10px;
    padding:  2.5rem 3rem;
    border: 2px solid rgba(221, 221, 221, 0.35);
}

.ec{
    transform: scale(1.1,1.1);
}

.coImg{
    padding: 8px;
    background-color: rgba(48, 132, 242, 0.3);
    border-radius: 1000px;
}

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

.coInfos span{
    display: flex;
    align-items: center;
    gap: 1rem;
    color:#595959;
}

.coInfos span::before{
    content: '';
    width: 8px;
    height: 8px;
    background-color: #3084F2;
    border-radius: 1000px;
    display: flex;
}

.coDesc{
    width: 850px;
    
}



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    
    .coMain{
        gap: 4rem;
    }

    .coDesc{
        width: 50%;;
    }

    .coCards{
        flex-direction: column;
        gap: 2rem;
    }

    .coDesc{
        width: 100%;
        
    }

    .ec{
        transform: scale(1,1);
    }
    
    .coMain{
        gap: 4rem;
    }

    .coInfos span{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        color:#595959;
        text-align: center;
        font-size: 12px;
    }
    
    .coInfos span::before{
        content: '';
        width: 8px;
        height: 8px;
        background-color: #3084F2;
        border-radius: 1000px;
        display: flex;
    }

    .coCards img{
        width: 100%;
    }
    

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    
}























/* Sicurezza Section
------------------------------*/

.sicurezzaMain{
    padding: 10rem 10%;
    display: flex;
    flex-direction: column;
}

.sicurezzaTitle{
    font-size: 35px;
    color: #595959;
    text-align: center;
    font-weight: 600;
}

.sicurezzaTitle span{
    color: #3084F2;
}

.sicurezzaStats{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
    margin-top: 2rem;
    gap: 6rem;
}

.stat{
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: center;
    margin-top: 1rem;

}

.stat span{
    color: #595959;
    font-size: 45px;
    font-weight: 400;
    margin-top: .5rem;
}

.stat img{
    width: 80px;
    margin-bottom: .5rem;;
}

.stat div{
    text-align: center;
    color: #3084F2;
    font-size: 18px;
    font-weight: 600;
}



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    
    .sicurezzaTitle{
        font-size: 24px;
    }


    .sicurezzaStats{
        flex-direction: column;
    }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    
}
























/* Footer Style 
-------------------------------------*/

footer{
    padding: 0 10%;
    padding-top: 12rem;
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 8rem;
    width: 100%;
}

.footerText{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .9rem;
}

.footerText h1{
    font-size: 25px;
    color: white;
    font-weight: 500;
}

.footerLinks{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color:#ffffff;
}

.list{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.list a{
    color: white;
    text-decoration: none;
}

.subFooter{
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.subFooter a{
    color:white;
    text-decoration: none;
}



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .footerText img{
        width: 230px;
    }

    .footerText h1{
        text-align: center;
        font-size: 20px;
    }

    .footerLinks{
        flex-direction: column;
        gap: 3rem;
    }

    .subFooter{
        flex-direction: column-reverse;
        gap:1rem;
    }

    .subFooter a{
        font-size: 12px;
    }

    .subFooter span{
        font-size: 12px;
    }


}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    
}
























/* Contatti Style 
-------------------------------------*/

.contattiMain{
    width: 100vw;
    height: 100vh;
    color: white;
}

.backMain{
    position: absolute;
    padding: 2rem 3rem;;
}

.backMain a{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.infoCont div{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;;
}

.infoCont div img{

}

.imgCont2{
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.23);
    border-radius: 1000px;
    border: 2px solid white;

}

.backMain a img{
    transform: scaleX(-1);
}

.contattiText{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 5%;
    padding-bottom: 10%;
}

.infoCont{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

.contattiText h1{
    font-size: 40px;    
}

.contattiText span{
    font-size: 14px;
    background-color: rgba(255,255,255, 0.3);
    padding: .5rem;
    border-radius: 5px;
}

.contattiContent{
    display: flex
}

.contattiText h1{
    font-weight: 500;
    font-size: 40px;
    color: rgb(255, 255, 255);
}

.contattiDescription{
    color: white;
    font-size: 16px;
}

.contattiContent{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
} 

.contattiForm{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2.5rem;   ;
}

.contattiForm h3{
    font-size: 28px;
    color: #3084F2;
    margin-top: 5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: center;
    justify-content: center;
    margin-top: 4rem;
}

.infos{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

.tel{
    color: white!important;
}

a[href^="tel"] {
    color: inherit; /* Inherit text color of parent element. */
    text-decoration: none; /* Remove underline. */
    /* Additional css `propery: value;` pairs here */
  }

.informazione{
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
    font-size: 14px;
    gap: 1rem;
}

/*.contattiForm h3::before{
    content:'';
    width: 10px;
    height: 10px;
    background-color: #3084F2;
    display: flex;
    border-radius: 1000px;
}
*/
form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

select{
    width: 100%;
    padding: 1rem 2rem;
    border: 1px solid #adadad;
    border-radius: 1000px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    font-family: 'Comfortaa';

}

select:required:invalid {
    color: #adadad;
  }



select:focus{
    outline: none;
    border-color: #3084F2;
}

select{
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
    font-family: 'Comfortaa';
    color: #595959;


}

option{

}

.buttonsend{
    font-size: 14px;
    font-weight: 400;
    padding: 1.3rem 2.3rem;
    background-color: #3084F2;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    border: 0;
    border: 2px solid #3084F2;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    margin-top: 2rem;
    
}    

.buttonsend:hover{
    font-size: 14px;
    font-weight: 400;
    background-color: rgba(48, 132, 242, 0.3);
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    border: 0;
    border: 2px solid #3084F2;

    color: #3084F2;
    cursor: pointer;
    margin-top: 2rem;
    
}    

.buttonsend span{
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.buttonsend:hover span{
    margin-right: 2rem;
}

textarea{
    width: 100%;
    padding: 1rem 2rem;
    border: 1px solid #adadad;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    resize: vertical;
    font-family: 'Comfortaa';
    color: #595959;

}

textarea::placeholder{
    color:#adadad;  
}

textarea:focus{
    outline: none;
    border-color: #3084F2;
}

input{
    padding: 1rem 2rem;
    border: 1px solid #adadad;
    border-radius: 1000px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    font-family: 'Comfortaa';
    color: #595959;


}

input::placeholder{
    color:#adadad;
}

input:focus{
    outline: none;
    border-color: #3084F2;
}


.rowForm{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.contattiInfo h3{
    font-size: 28px;
    color: #3084F2;
    margin-top: 5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contattiInfo h3::before{
    content:'';
    width: 10px;
    height: 10px;
    background-color: #3084F2;
    display: flex;
    border-radius: 1000px;
}

.infoContainer{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.infoContainer a{
    color: black;
}



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    
    .contattiText{
        gap: 1rem;
        padding: 8rem 10%;
        padding-top: 7rem;
        align-items: flex-start;
    }

    .contattiText h1{
        font-size: 28px;   
        text-align: left; 
        line-height: 30px;
    }
    
    .contattiText span{
        font-size: 10px;
        background-color: rgba(255,255,255, 0.3);
        padding: .3rem;
        border-radius: 5px;
        margin-right: auto;
    }

    .contattiText p{
        font-size: 12px;
        text-align: left;
    }

    .infoCont{
        flex-direction: column;
        gap: .8rem;
        align-items: flex-start;
    }

    .rowForm{
        flex-direction: column;
    }

    .contattiMain{
        margin-bottom: 30rem;
    }

    input{
        width: 100%;
    }

    .buttonsend{
        width: auto;
    }

    .imgCont2{
        padding: 8px;
    }

    .imgCont2 img{
        width: 20px;
    }

    .backMain{
        position: absolute;
        padding: 2rem 3rem;;
    }
    
    .backMain a{
        display: flex;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
    }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 768px) {
    .contattiText span{
        font-size: 10px;
        background-color: rgba(255,255,255, 0.3);
        padding: .3rem;
        border-radius: 5px;
        margin-right: auto;
    }

    .contattiText p{
        font-size: 12px;
        margin-right: auto;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 950px) {
    .contattiText{
        gap: 1rem;
        padding: 8rem 10%;
        padding-top: 7rem;
    }

    .contattiText h1{
        font-size: 28px;   
        text-align: left; 
        line-height: 30px;
    }
    
    .contattiText span{
        font-size: 10px;
        background-color: rgba(255,255,255, 0.3);
        padding: .3rem;
        border-radius: 5px;
    }

    
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    
}
























/* Funzioni Style
-----------------------------*/

.funzioniMain{
    color: white;
}

.funz1{
    margin-top: 3rem;
}

.funz{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 10%;
}

.funzioniContent{
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.funzList{
    width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.funzList h1{
    color: #3084F2;
    font-size: 30px;
}

.funz2, .funz4{
    display: flex;
    flex-direction: row-reverse;
    background-color: #f9f9f9;

}

.funzImg{
    padding: 1rem;
    border-radius: 10px;
}

.checkSpan span{
    line-height: 25px;;
}

.funzioneSpan{
    color:#3084F2;
    background-color: rgba(48, 132, 242, 0.3);
    margin-right: auto;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    
.funzioniMain{
    color: white;
}

.funz1{
    margin-top: 3rem;
}

.funz{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.funzioniContent{
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.funz{
    padding: 0;
}

.funzList{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 10%;
}

.funzList h1{
    color: #3084F2;
    font-size: 30px;
}

.funz2, .funz4{
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    width: 100%;

}

.funzImg{
    padding: 1rem;
    border-radius: 10px;

}

.funzImg img{
    width: 100%;
}

.checkSpan span{
    line-height: 25px;;
}


}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 768px) {
    
.funzioniMain{
    color: white;
}

.funz1{
    margin-top: 3rem;
}

.funz{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.funzioniContent{
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.funz{
    padding: 0;
}

.funzList{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 10%;
}

.funzList h1{
    color: #3084F2;
    font-size: 30px;
}

.funz2, .funz4{
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    width: 100%;

}

.funzImg{
    padding: 1rem;
    border-radius: 10px;

}

.funzImg img{
    width: 100%;
}

.checkSpan span{
    line-height: 25px;;
}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 1200px) {
    .funzioniMain{
        color: white;
    }
    
    .funz1{
        margin-top: 3rem;
    }
    
    .funz{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-around;
        padding: 10%;
    }
    
    .funzioniContent{
        display: flex;
        flex-direction: column;
        gap: 5rem;
    }
    
    
    
    .funzList{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .funzList h1{
        color: #3084F2;
        font-size: 30px;
    }
    
    .funz2, .funz4{
        display: flex;
        flex-direction: column;
        background-color: #f9f9f9;
        width: 100%;
    
    }
    
    .funzImg{
        padding: 1rem;
        border-radius: 10px;
    
    }
    
    .funzImg img{
        width: 100%;
    }
    
    .checkSpan span{
        line-height: 25px;;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1700px) {
    .funz{
        
        gap: 4rem;
    }
}

.contattiInfo{
    color: white!important;
}

.privacyContent{
    padding: 2rem 10%;
}


















