/******* Do not edit this file *******
Code Snippets Manager
Saved: Jan 06 2025 | 10:10:06 */
/* Hero clip-path */
@media (min-width: 768px) {
  .hero-clip-path {
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
  }
}
/* Coloured discs for the listing elements */
body:not(.elementor-editor-active) .elementor-widget-theme-post-content ul, body:not(.elementor-editor-active) .elementor-widget-text-editor ul {
  list-style-type: none;
  /* Remove default bullets */
  padding-left: 20px;
  /* Add padding to make space for custom bullets */
}
body:not(.elementor-editor-active) .elementor-widget-theme-post-content ul li, body:not(.elementor-editor-active) .elementor-widget-text-editor ul li {
  position: relative;
  padding-left: 30px;
  /* Adjust padding for custom bullet */
  margin-bottom: 15px;
  /* Add space between list items */
}
body:not(.elementor-editor-active) .elementor-widget-theme-post-content ul li::before, body:not(.elementor-editor-active) .elementor-widget-text-editor ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  transform: translateY(-50%);
  width: 15px;
  /* Size of the disc */
  height: 15px;
  background-color: #15A6B9;
  /* Your custom color */
  border-radius: 50%;
  /* Disc shape */
}
/* Aling listing grid elements center horizontaly */
.jet-listing-grid__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
/* Jet dynamic field link hover colour */
.jet-listing-dynamic-field__content a {
  color: white !important;
  transition: color 0.3s ease;
}
.jet-listing-dynamic-field__content a:hover {
  color: #306086 !important;
}
