@import url('https://fonts.googleapis.com/css2?family=Radio+Canada:wght@300;400;500;600;700&display=swap');


:root {
    --color-text: #111111;
    --color-primary: #12AF7F;
    --color-secondary: #1464BD;
    --color-white: #FFFFFF;
    --color-grey: #F6F6F6;
    --font-radio:'Radio Canada', sans-serif;
}

.font-radio{
    font-family: var(--font-radio);
}



.button {
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: all .3s cubic-bezier(.215, .61, .355, 1);
    color:var(--color-white);
    font-size: .8rem;
}

    .button:hover {
        color: #FFF;
    }




.container-header {
    width: 100%;
    position: fixed;
    padding:30px 0 60px 0;
    z-index: 888;
    background: transparent;
    transition: all .3s cubic-bezier(.215, .61, .355, 1);
}

.header {
    display: flex;
    justify-content: space-between;
    color: #FFF;
}

.container-header--scroll {
    background: #111111;
    padding: 30px 0;
}

    .container-header--scroll img {
        width: 100px!important;
    }

.header__logo {
    width: 120px;
}

    .header__logo img {
        width:100%;
    }

.header__menu {
    padding-top: 15px;
}



    .header__menu li {
        display: inline-block;
        padding-right: 10px;
    }

    .header__menu li:last-child {
        padding-right: 0px;
    }

.header__menu a {
    color:var(--color-primary);
    transition: all .3s cubic-bezier(.215, .61, .355, 1);
}

    .header__menu a:hover, .header__menu a:active {
        color: var(--color-secondary);
        cursor: pointer;
    }

.header__menu--active {
    color: var(--color-primary) !important;
}

.header__hamburger {
    display: none;
}

.available {
    width: 45%;
    position: absolute;
    top: 25%;
    right:5%;
}


.rotate {
    animation: rotation 10s linear infinite;
}

@keyframes rotation {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {

    .container-header {
        background: var(--color-text);
        padding: 0px;
    }

    .container-header--scroll {
        padding: 0;
    }

    .container-header--scroll img {
        width: 90px!important;
    }



    .header {
        padding: 20px 15px;
    }

    .header__menu {
        width: 100%;
        height: 0;
        overflow: hidden;
        position: absolute;
        background: var(--color-text);
        z-index: 999;
        top: 70px;
        left: 0%;
        transition: all .5s cubic-bezier(.215, .61, .355, 1);
    }

        .header__menu li {
            display: block;
            border-bottom: 1px solid #555;
            padding: 15px;
        }

    .header__hamburger {
        display: block;
        width: 40px;
        margin-top: 15px;
    }

        .header__hamburger span {
            width: 33px;
            height: 2px;
            display: block;
            background: #FFF;
            margin-bottom: 6px;
            transition: all .2s cubic-bezier(.215, .61, .355, 1);
        }

    .menu-open .header__menu {
        height: 100vh;
    }

    .menu-close .header__menu {
        height: 0;
    }

    .menu-open {
        overflow: hidden;
    }

        .menu-open .header__hamburger span:nth-child(1) {
            transform: translateY(4px) rotate(45deg);
        }

        .menu-open .header__hamburger span:nth-child(2) {
            transform: translateY(-4px) rotate(-45deg);
        }

    .header__menu--off {
        height: 0 !important;
    }

    .header__logo img{
        width:90px;
    }
}


.header-send{
    padding:10px 0;
}

.header-send img{
    width: 140px;
}


/* Animation
------------------------------------------------- */
.btn {
    background: var(--color-primary);
    color: #FFF;
    border-radius: 5px;
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    vertical-align:central;
    transition:all .3s;
}

    .btn:hover {
        background: var(--color-secondary);
        transition: all .3s;
    }


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

.footer {
    background: linear-gradient(to right, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 20px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color:#FFF;
    font-weight:500;
}

    .footer a:link, .footer a:visited {
        color:#FFF;
        text-decoration:underline;
    }

    .footer a:hover {
        text-decoration: none;
    }



/* Animation
------------------------------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(60px);
}

.text-reveal {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}






        ::placeholder {
            color: #757575;
        }

    ::-ms-input-placeholder {
        color: #757575;
    }


.send-mail{
    width: 100%;
    height: 93.5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.home{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(0deg, #F4F4F4 0%, #DEDCDC 100%), url() no-repeat center center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.home_btn{
    border-radius: 30px;
    color: var(--color-white);
    font-weight: 800;
    text-align: center;
    padding:20px 45px;
    vertical-align: middle;

}

.home_btn i{
    font-size: 1.6rem;
    vertical-align: middle;
    margin-right: 6px;
}

.btn_contact{
    background-color: var(--color-primary);
}
.btn_products{
    background-color: var(--color-secondary);
}

@media (max-width: 768px) {

    .btn-padding{
        padding: 30px 0;
    }
}



.card{
    width: 100%;
    text-align: center;
}

.card h1{
    font-size: 2.2rem;
    color: var(--color-primary);
    font-weight: 800;
}
.card h3{
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.card__img{
    padding:120px 0 15px 0;
}

.card__img img{
    width: 260px;
}

.card a:link, .card a:visited{
    color: var(--color-text);
    font-size: 1.3rem;
    transition: all .3s;
    font-weight: 500;
}

.card a:hover{
    color: var(--color-primary);
}


@media (max-width: 768px) {

    .card a:link, .card a:visited{
        font-size: 1.1rem;
    }
}

.contatti{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(0deg, var(--color-secondary) 0%, var(--color-primary) 100%), url() no-repeat center center;
    color: var(--color-white);
    padding: 15vh 0;
}

.contatti h1{
    font-size: 2.5rem;
}


.contatti p{
    padding: 15px 0 60px 0;
}

input[type=text]{
    width: 100%;
    height: 60px;
    border-radius: 30px;
    border:0px none;
    padding:0 30px;
    font-family:'Raleway', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 15px;
}

input[type=email]{
    width: 100%;
    height: 60px;
    float: left;
    border-radius: 30px;
    border:0px none;
    padding:0 30px;
    font-family:'Raleway', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 15px;
}

input[type=tel]{
    width: 100%;
    height: 60px;
    float: left;
    border-radius: 30px;
    border:0px none;
    padding:0 30px;
    font-family:'Raleway', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 15px;
}
input[type=submit]{
    width: 100%;
    height: 60px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 30px;
    border:0px none;
    padding:0 30px;
    font-family:'Raleway', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: all .3s;
}

input[type=submit]:hover{
    background: var(--color-secondary);
    cursor: pointer;
}

textarea{
    width: 100%;
    height: 300px;
    border-radius: 30px;
    border:0px none;
    padding:30px;
    font-family:'Raleway', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
  
    input[type=text], input[type=email],input[type=tel], input[type=submit]{
        height: 50px;
    }

    textarea{
        height: 200px;
    }

    .contatti p{
        padding: 15px 0 30px 0;
    }
    

}


.prodotti{
    width: 100%;
    min-height: 100vh;
    padding: 15vh 0;
}

.prodotti h1{
    font-size: 2.5rem;
    color: var(--color-secondary);
}


.prodotti h3{
    font-size: 1.5rem;
    padding:45px 0 15px 0;
}

.prodotti h4{
    font-size: 1.2rem;
    padding-bottom:30px;
}

.prodotti article{
    font-size: 1rem;
}

.prodotti p{
    padding: 15px 0 60px 0;
}


.prodotti__logo{
    width: 100%;
    height: 450px;
    background-color: var(--color-grey);
    border-radius: 30px;
    display:flex;
    align-items: center;
    justify-content: center;
}

.prodotti__logo img{
    max-width: 300px;
}

@media (max-width: 768px) {
    .prodotti__logo img{
        max-width: 250px;
    }
    
    }