/* body{
    font-family: 'Quicksand', sans-serif;
} */

body{
    background-image: linear-gradient(rgba(255, 255, 255, 0.405), rgba(255, 255, 255, 0.405)), url("../img/esfogatal.jpg");
    background-size: 100% auto;
}

/* Icone social */

.social{
    margin-bottom:0;
    padding: 20 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.social li{
    list-style: none;
}

.social li a{
    text-decoration: none;
    width: 50px;
    height: 50px;

    /* background-color: white; */

    background: rgba(255,255,255,0.2); /* old site */
    /* backdrop-filter: blur(10px); */

    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);

}

.social li a i{
    transform: scale(0.6);
    transition: 0.5s;
    /* color:lightgray; old site */
    color: black;
}

.social li:hover a i{
    transform: scale(0.6) rotate(360deg);
}

/* New Site */
.topnav {
    z-index:100;
    overflow: hidden;
    background-color: #15151b;
    position: fixed;
    top: 0;
    width: 100%;
}

.topnav a {
    float: left;
    display: block;
    color: #cacaca;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    margin-right:20px;
}

@media screen and (max-width:600px) {
    .topnav a{
        margin-right:0px;
    }
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav div a:hover {
    background-color: #15151b;
}

.topnav a.active {
    background-color: #04AA6D;
    color: white;
}

.topnav .icon {
    display: none;
}

@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}



/* HR */

hr.style-one {
    margin:auto;
    width:100px;
    border: 0;
    height: 1px;
    background: #333;
    background-image: -webkit-linear-gradient(left, #ccc, #333, #ccc);
    background-image: -moz-linear-gradient(left, #ccc, #333, #ccc);
    background-image: -ms-linear-gradient(left, #ccc, #333, #ccc);
    background-image: -o-linear-gradient(left, #ccc, #333, #ccc);
}

/* Flex container */

.flex-container {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .flex-item-left {
    padding: 0 10px 10px 10px;
    flex: 60%;
  }
  
  .flex-item-right {
    padding: 0 10px 10px 10px;
    flex: 40%;
  }
  
  /* Responsive layout - makes a one column-layout instead of a two-column layout */
  @media (max-width: 800px) {
    .flex-item-right, .flex-item-left {
      flex: 100%;
    }
  }



/* Pulsanti link */

.divBgImg{
  filter: blur(8px);
  -webkit-filter: blur(8px);
  
}

.divButton {
    cursor: pointer;
    position: relative;
    margin-bottom: 16px;
    border: none;
    background-color: rgba(255, 255, 255, 0.8);
    color: rgb(0, 0, 0);
    /* transition: transform 0.15s cubic-bezier(0, 0.2, 0.5, 3) 0s; */
    box-shadow: rgba(10, 11, 13, 0.08) 0px 2px 4px 0px;
    border-radius: 4px;
    height:58px;
    transition: 100ms linear; 
}

.divbutton:hover{
    transform: scale(1.01);

}
