

/* Agency Custom CSS */
p.red {color: red;}

.label.primary {
    background: #003C92;
}

/* ----------------Image shadow-------------------------- */
img.hover-shadow {
  transition: 0.3s;
}
 
.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/* ----------------------Image enlarge (thanks to https://codepen.io/iclldnz)------------------- */


.image-box img:hover {
    transform: scale(1.1);
}