/*
Theme Name:     Fornindustria
Theme URI:      https://www.itasolution.it/
Description:    Tema creato per Fornindustria s.r.l.
Author:         Eugenio Palumbo
Author URI:     https://www.itasolution.it/
Template:       Divi
Version:        1.0
*/

/*
@media screen and ( max-width: 980px ) {
    .reverse {
        display: flex;
        flex-direction: column-reverse;
    }
} 
*/
.header-widgets-h {
    display: flex; /* Abilita Flexbox */
    justify-content: space-between; /* Spazio uniforme tra i widget */
    align-items: center; /* Allinea verticalmente al centro */
}

.widget-h {
    flex: 1; /* Ogni widget occuperà lo stesso spazio */
    text-align: center; /* Centra il testo all'interno di ogni widget */
    margin: 0 10px; /* Aggiungi margine laterale se necessario */
}

.list-unstyled {
	list-style-type: none !important;
}


.destserv {
  position: relative;
  display: inline-block;
  border-radius: 6px;
  clip-path: polygon(20px 0px, 100% 0px, 100% 100%, 0% 100%, 0% 20px);
  background: #1654DB; /*front*/
  padding: 3px 40px;
  margin: 0 20px 0 0;
  font-weight: 600;
  /*font-size: 18px;*/
  color: #fff;
  transition: clip-path 500ms;
}

.destserv:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #517ae2;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1); 
  border-radius: 0 0 6px 0;
  transition: transform 500ms;
}

.destserv:hover {
  clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0% 100%, 0% 0px);
}

.destserv:hover:after {
  transform: translate(-100%, -100%);
}
