/* CSS Document */
/*
COLORI
background: #0B091A; blue background
background: #0D0D2B; blue testi
background: #333333; grigio testi
background: #352E5B; viola scuro
background: #552BBF; viola scuro
background: #7D67FF; viola chiaro
background: #E1DFEC; grigio chiaro
background: #E6007A; magenta
background: #FFFFFF; white
*/
/*
FONT
font-family: 'Josefin Sans', sans-serif;
font-family: 'Rubik', sans-serif;
font-family: 'Ubuntu', sans-serif;
*/
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600;700&family=Rubik:ital,wght@0,300;0,400;0,500;1,400&family=Ubuntu:wght@400;500;700&display=swap');
html, body{
    font-size: 62.5%; /*in questo modo lavoriamo con pixel in base dieci 1rem = 10px*/
}
body{
  background-color: #E1DFEC;
  font-family: 'Rubik', sans-serif;
  background-image: url( "../img/bg-home-section-mobile.svg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  font-weight: 400;
  line-height: 1.75;
  color: #0D0D2B;
}
p{
  font-family: 'Rubik', sans-serif;
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
}
h1, h2, h3, h4, h5, h6 {
  /*margin: 4.8rem 0 2.2rem;*/
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
h1 {
  margin-top: 0;
  font-size: 4.9rem;
}
h2 {font-size: 3.9rem;}
h3 {font-size: 3.1rem;}
h4 {font-size: 2.5rem;}
h5 {font-size: 2rem;}
h6 {font-size: 1.6rem;}
small, .text_small {font-size: 1.2rem;}
.text-center{text-align: center;}
.text-right{text-align: right;}
.text-left{text-align: left;}
.text-magenta{color: #E6007A;}
.text-violet{color: #7D67FF;}
.text-white{color: white;}
.btnQuantum{
    background-color: #552BBF;
    border: 1px solid #552BBF;
    border-radius: 6px;
    padding: 6px 15px;
    color: white;
    font-size: 1.3rem;
    display: inline-block;
    transition: all .3s ease-in-out;
}
.btnQuantum:hover{
    background-color: transparent;
    border: 1px solid #552BBF;
    color: #552BBF;
    cursor: pointer;
}
header{
    position: fixed;
    z-index: 999;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
}
#fullMenu{
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    right: -105%;
    background-color: #AFA3F6;
    background-image: url("../img/background-full-menu-mobile.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 5%;
    transition: all .4s ease-in-out;    
}
#fullMenu ul li a{
    font-size: 3.2rem;
    line-height: 2;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    color: #552BBF;
    text-transform: uppercase;
}
.showMenu{
    right:0 !important;
}
#socialMenu{
    font-size: 2.4rem;
    color: #552BBF;
}
#ham{
    position: relative;
    width: 25px;
    height: 25px;
}
#ham::before{
    content: "menu";
    font-size: 1rem;
    color: #552BBF;
    position: relative;
    left: -40px;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}
#ham:hover:before{
    color: #0D0D2B;
    cursor: pointer;
}
#ham span{
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #552BBF;
    top: 0;
    left: 0;
    -webkit-transform-origin: left;
    transform-origin: left;
    transition: all .3s ease-in-out;
}
#ham span:nth-of-type(1){}
#ham span:nth-of-type(2){
    width: 80%;
    top: 12px;
}
#ham.open span:nth-of-type(1){
    /*width: 100%;*/
    top: -1px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#ham.open span:nth-of-type(2){
    width: 100%;
    top: 16px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#logo{
    position: relative;
    z-index: 11;
}
#emailIco{
    font-size: 2.4rem;
    color: #552BBF;
    position: relative;
    z-index: 12;
}
#contactUs{
    display: none;
}
#menuDesk {
    display: none;
}
.fullHeightFlex{
    padding: 10%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    padding-top: 120px;
}
#homeSection{
}
/***************ICO COUNTER********************************/
#counter{
    width: 80%;
    margin: 5% auto;
    padding: 5%;
    background-color: #0B091A;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
}
.boxIcoCounter{
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}
.counterDescription p{
    margin-bottom: 0;
}
/**********How Quantum Works********************************/
.sectionDiagonal{
    padding: 5%;
    background-color: #552BBF;
    background-image: url( "../img/bg-section-diagonal.svg");
    background-repeat: no-repeat;
    background-position: center;
    transform: skewY(-2deg);  
}
.sectionDiagonal div{
    transform: skewY(2deg);
}
#howWorksWrapper{
    width: 80%;
    margin: 0 auto;
    color: white;
    display: flex;
    flex-flow: row wrap;
    margin-top: 30px;
}
#howWorksWrapper article{
    margin-top: 30px;
}
#howWorksWrapper h5{
    padding: 10px 0;
    color: #E6007A;
}
#boxCookie{
    position: fixed;
    padding: 2%;
    bottom: 20px;
    left: 50%;
    background-color: #E6007A;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    transform: translateX(-50%);
}
#boxCookie p{
    color: white;
    margin-bottom: 0;
}
#boxCookie a{
    text-decoration: underline;
}
/***************************Quantum Applications**************************************/
#quantumApplications{
    padding: 10%;
}
.flexContainer{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.columnReverse{
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
}
.btnSection{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.justify-around{
    justify-content: space-around;
}
.mt5{
    margin-top: 5%;
}
.fb50{
    flex-basis: 50%;
}
/****************************Card section blog****************************************/
#postNews{
    margin-top: 60px;
    gap: 20px;
    align-items: center;
    padding: 10%;
}
.cardNews{
    max-width: 370px;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 40px 40px 0 #391777;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.imgNews{
    border-radius: 8px;
    overflow: hidden;
    max-width: 330px;
    max-height: 150px;
}
.cardNews-data{
    font-size: 11px;
    text-transform: uppercase;
}
.cardNewsReadMore{
    text-transform: uppercase;
    color: #E6007A;
    font-size: 13px;
    font-weight: bold;
}
.cardNews:nth-last-of-type(2){
    display: none;
}
.cardNews:nth-last-of-type(3){
    display: none;
}
/********************Call to Action*****************************/
#callToAction{
    max-width: 80%;
    margin: 0 auto;
    margin-top: 60px;
    padding: 4%;
    border-radius: 8px;
    background-color: #0D0D2B;
    background-image: url("../img/calltoaction/vectorimg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    align-items: center;
}
/*********************Footer del sito***************************/
#siteFooter{
    background: linear-gradient(180deg, #E1DFEC 0%, #552BBF 100%);   
}
#footerWrapper{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    color: white;
    padding: 10%;
    gap: 30px;
}
#footerWrapper a{
    color: white;
}
#footerWrapper div ul{
    display: none;
}
#subFooter{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}
#socialFooter{
    display: flex;
    gap: 15px;
}
#socialFooter img, #footerWrapper div.col35 img{
    display: inline;
}
.lineGradient{
    background: linear-gradient(-90deg, #E600D0 0%, #7D67FF 46.15%);
    height: 2px;
}
#footerWrapper div.col35{
    display: none;
}
#footerWrapper div h5::after{
    content: url('https://api.iconify.design/ion/chevron-down-sharp.svg?color=white&width=16&height=16');
    padding-left: 10px;
}
#contactSec{
    display: flex;
    flex-flow: column wrap;
}
#contactSec > div{
    flex: 1 1 33.3333367%;
}
#contactForm{
    padding: 10px;
}
#contactForm input[type=text], #contactForm input[type=email]{
    background-color: rgba(220,210,246,0.50);
    border: 1px solid rgba(83,43,191,1.00);
    border-radius: 5px;
    padding: 8px;
    font-size: 13px;
    color: rgba(85,43,191,1.00);
    width: 50%;
    margin-bottom: 15px;
    transition: all .2s ease-in-out;
}
#contactForm input[type=text]:focus, #contactForm input[type=email]:focus{
    outline: none;
    border: 1px solid rgba(230,0,122,1.00);
    background-color: rgba(220,210,246,1.00);
}
#contactForm textarea{
    background-color: rgba(220,210,246,0.50);
    border: 1px solid rgba(83,43,191,1.00);
    border-radius: 5px;
    padding: 8px;
    font-size: 13px;
    color: rgba(85,43,191,1.00);
    width: 50%;
    margin-bottom: 15px;
    transition: all .2s ease-in-out;
}
#contactForm input[type=submit]{
    display: block;
}
/***********************************About us******************************************/
#aboutusSection{
    padding: 10%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    padding-top: 120px;
    gap: 79px;
}
#quantumMission{
    padding: 10% 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
#quantumMission div{
    transform: skewY(0deg)
}
#awesomeTeamWrapper{
    display: flex;
    flex-flow: row wrap;
    padding: 10%;
    justify-content: space-between;
    
}
#postProfileArrow, #postNewsArrow{
    margin: 5%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap:5px;
}
.cardTeam{
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 40px 40px 0 #391777;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#awesomeTeamWrapper div{
    display: none;
}
#awesomeTeamWrapper div:nth-of-type(1){
    display: flex;
}
.imgTeam{
    margin: 0 auto;
    overflow: hidden;
}
.socialIcon{
    display: flex;
    flex-direction: row;
    gap: 2px;
}
@media(min-width:576px){
    #counter{
        width: 60%;
    }
}
@media(min-width:768px){
    body{
    background-image: url( "../img/bg-desktop-home.svg");
    }
    #menuDesk{
        display: block;
    }
    #menuDesk ul{
        display: flex;
        justify-content: space-between;
        gap: 2rem;
    }
    #menuDesk ul li a{
        font-size: 1.6rem;
        color: #0D0D2B;
        font-weight: 500;
        transition: all .3s ease-in-out;
    }
    #menuDesk ul li a:hover{
        color: #552BBF;
    }
    #emailIco{
        display: none;
    }
    #ham{
        display: none;
    }
    #contactUs{
        display: block;
        background-color: #552BBF;
        border:1px solid #552BBF;
        border-radius: 6px;
        padding: 12px 18px;
        color: white;
    }
    #homeSection div:nth-of-type(1){
        flex-basis: 70%;
    }
    .fullHeightFlex{
        height: 100vh;
        flex-direction: row;
    }
    #counter{
        width: 80%;
        flex-direction: row;
        padding: 1%;
    }
    #howWorksTitle{
        text-align: center;
    }
    #howWorksWrapper{
        align-items: baseline;
    }
    #howWorksWrapper article{
        flex-basis: 33.3333367%;
        padding: 4%;
    }
    #boxCookie{
        position: fixed;
        padding: 2%;
        left: 50%;
        bottom: 30px;
        background-color: #E6007A;
        border-radius: 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        gap: 30px;
        align-items: center;
        transform: translateX(-50%);
    }
    #boxCookie p{
        color: white;
        margin-bottom: 0;
    }
    #boxCookie a{
        text-decoration: underline;
    }
    .flexContainer{
        flex-direction: row;
    }
    #postNews{
        flex-direction: column;
    }
    #postNewsArrow{
    right: 18%;
    }
    #callToAction{
        max-width: 940px;
        margin: 0 auto;
        margin-top: 60px;
        padding: 5%;
        border-radius: 8px;
        background-color: #0D0D2B;
        background-image: url("../img/calltoaction/vectorimg.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        text-align: left;
    }
    #footerWrapper{
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        text-align: left;
    }
    .col35{
        flex-basis: 35%;
    }
    .col35 img{
        margin: 15% 5% 0 0;
    }
    #footerWrapper div ul{
        display: block;
        font-size: 1.6rem;
        line-height: 3.8rem;
        margin-top: 24px;
    }
    #footerWrapper div ul li a{
        color: #E0E0E0;
    }
    #subFooter{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        color: white;
    }
    #footerWrapper div.col35{
        display: block;
    }
    #footerWrapper div h5::after{
        display: none;
    }
    #contactSec{
        flex-flow: row wrap;
        padding: 0 10%;
        height: 100vh;
        align-items: center;
    }
    #postNewsArrow, #postProfileArrow{
        display: none;
    }
    #quantumMission{
        padding: 10% 0;
        display: flex;
        flex-direction: row;
        gap: 40px;
    }
    .col33{
        flex-basis: 50%;
        padding: 20px 10px;
    }
    #quantumMission div{
        transform: skewY(0deg)
    }
    .imgFLuid{
        overflow: hidden;
        max-width: auto;
        max-height: 100%;        
    }
    #awesomeTeamWrapper div{
        display: flex;
    }
    
}
@media(min-width:992px){
    #postNews{
        flex-direction: row;
    }
    .cardNews:nth-last-of-type(2){
        display: flex;
    }
    .cardNews:nth-last-of-type(3){
        display: flex;
    }
    
}
@media(min-width:1200px){
    .col33{
        flex-basis: 33.3333367%;
        padding: 20px 10px;
    }
}