﻿    .bg1{
	background-color: #ff0000;
	}
    .bg2{
	background-color: #FFA901;
	}
    .bg3{
	background-color: #009DD2;
	}
	
.bg-light {
    background: linear-gradient(#F9F400 , #F09450 , #E8641B , #FF0000);
}

.hero-image {
  background-image: url("../img/bg.jpg"); /* The image used */
  background-color: #FDFFE5; /* Usato se l'immagine non è disponibile */
  height: 410px; /* Devi impostare un'altezza specificata */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Ridimensiona l'immagine di sfondo per coprire l'intero contenitore */
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

    .whatsapp:hover {
        transform: scale(1.1);
    }

.zoom {
    transition: transform 3s;
    width: 100%;
    height: auto;
    border-radius: 1%;
    overflow: hidden;
    margin: 0 auto;
}

    .zoom img {
        transition: transform 3s;
    }

        .zoom img:hover {
            -ms-transform: scale(1.5); /* IE 9 */
            -webkit-transform: scale(1.5); /* Safari 3-8 */
            transform: scale(1.5);
        }

.social-media li, .footer-social li {
    transition: transform 1s;
    font-size:20px
}

.social-media li:hover, .footer-social li:hover {
    transform: scale(1.6) rotate(10deg);
}