CLINICAL CASE LIBRARY
Download the evidence*
Concise case summaries with indication and treatment timeline
Before-and-after imagery and radiographic documentation
Practical placement tips and chair-side technique notes
Clinical outcome measures and follow-up observations
Safety and tolerability information observed across cases
.features-grid {
max-width: 1200px;
margin: auto;
padding: 20px;
text-align: center;
}
.dual-title {
margin-bottom: 40px;
font-size: 32px;
line-height: 1.3;
}
.dual-title .blue {
color: #00b3e3;
font-weight: bold;
text-transform: uppercase;
}
.dual-title .black {
color: #000;
font-weight: normal;
margin-left: 8px;
}
/* 🔹 Desktop = griglia */
@media (min-width: 768px) {
.features-grid .grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 20px;
}
}
/* 🔹 Mobile = carosello semplice */
@media (max-width: 767px) {
.features-grid .grid {
display: flex;
gap: 15px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
padding-bottom: 10px;
}
.features-grid .grid::-webkit-scrollbar {
display: none; /* nasconde la scrollbar */
}
.feature {
flex: 0 0 80%; /* ogni card occupa ~80% dello schermo */
scroll-snap-align: center;
}
}
.feature {
background: #f9f9f9;
border-radius: 8px;
padding: 15px;
transition: transform 0.2s ease, box-shadow 0.2s ease;
min-width: 180px; /* per sicurezza */
}
.feature:hover {
transform: translateY(-5px);
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.feature .icon {
margin-bottom: 10px;
}
.feature .icon img {
width: 40px;
height: auto;
}
.feature p {
font-size: 16px;
margin: 0;
}
,
All Cases
Non-Surgical
Pre-Surgical
Preservation of a Compromised Tooth Using Non-Surgical Therapy and Sterify Gel
Dr. Claudio Pasquale, PhD
DOWNLOAD
Management of Periodontitis Stage 3 with One-Stage Instrumentation and Sterify Gel
Dental Hygienist, Italy
DOWNLOAD
Non-Surgical Resolution of Advanced Periodontitis in a Smoking Patient using Sterify Gel
Dental Hygienist, Italy
DOWNLOAD
Use of Sterify Gel in non-surgical periodontal therapy — Stage 4, Grade C Generalised Periodontitis
Dr. Alexandru Mihăilescu, DDS, Bucharest
DOWNLOAD
Stage IV - Grade C Periodontitis Complicated by Post Partum Anemia and Endocrine Disorders
Dr. Grosu Bianca Roxana, Constanta
DOWNLOAD
Managing Mobility and Interproximal Defect in Stage III Periodontitis with Sterify Gel
Dr. Larisa Musić, DMD, PhD
DOWNLOAD
The Adjuvant Role of Sterify Gel in Plasmacytic Gingivitis
Dr. Grosu Bianca Roxana, Constanta
DOWNLOAD
Use of Sterify Gel in Non-surgical Periodontal Therapy of a Stage 3, Grade B Generalised Periodontitis
Dr. Alexandru Mihăilescu, DDS, Bucharest
DOWNLOAD
Stage IV, Grade C Periodontitis: Single-Session Full-Mouth NSPT and 3-Month Outcomes
Tin Crnić, DMD, Austria
DOWNLOAD
Marked Pocket Reduction at 3 Months with Adjunctive Sterify Gel in Severe Periodontitis (Stage III, Grade C) associated to Poor Oral Hygiene
Dr. Lisa Hezel, Germany
DOWNLOAD
Clinical Case #1
Preservation of a Compromised Tooth Using Non-Surgical Therapy and Sterify Gel
Dr. Claudio Pasquale, PhD
DOWNLOAD
Clinical Case #2
Management of Periodontitis Stage 3 with One-Stage Instrumentation and Sterify Gel
Dental Hygienist, Italy
DOWNLOAD
Clinical Case #3
Non-Surgical Resolution of Advanced Periodontitis in a Smoking Patient using Sterify Gel
Dental Hygienist, Italy
DOWNLOAD
Clinical Case #4
Use of Sterify Gel in non-surgical periodontal therapy — Stage 4, Grade C Generalised Periodontitis
Dr. Alexandru Mihăilescu, DDS, Bucharest
DOWNLOAD
Clinical Case #5
Stage IV - Grade C Periodontitis Complicated by Post Partum Anemia and Endocrine Disorders
Dr. Grosu Bianca Roxana, Constanta
DOWNLOAD
Clinical Case #6
Managing Mobility and Interproximal Defect in Stage III Periodontitis with Sterify Gel
Dr. Larisa Musić, DMD, PhD
DOWNLOAD
Clinical Case #7
The Adjuvant Role of Sterify Gel in Plasmacytic Gingivitis
Dr. Grosu Bianca Roxana, Constanta
DOWNLOAD
Clinical Case #8
Use of Sterify Gel in Non-surgical Periodontal Therapy of a Stage 3, Grade B Generalised Periodontitis
Dr. Alexandru Mihăilescu, DDS, Bucharest
DOWNLOAD
Clinical Case #9
Stage IV, Grade C Periodontitis: Single-Session Full-Mouth NSPT and 3-Month Outcomes
Tin Crnić, DMD, Austria
DOWNLOAD
Clinical Case #10
Marked Pocket Reduction at 3 Months with Adjunctive Sterify Gel in Severe Periodontitis (Stage III, Grade C) associated to Poor Oral Hygiene
Dr. Lisa Hezel, Germany
DOWNLOAD
/* --- FIX colore dottore nel mobile accordion --- */
.cases-accordion .case-doctor {
color: #222 !important;
font-weight: 600;
}
/* ---------------------------------------------------------
FIX DEFINITIVO PER I FILTRI (tema Drupal li sovrascrive)
------------------------------------------------------------ */
.cases-filters button {
display: inline-block !important;
padding: 10px 20px !important;
margin: 5px !important;
border: 2px solid #00b3e3 !important;
background: transparent !important;
color: #00b3e3 !important;
border-radius: 4px !important;
font-weight: bold !important;
text-transform: uppercase !important;
cursor: pointer !important;
}
.cases-filters button.active,
.cases-filters button:hover {
background: #00b3e3 !important;
color: #fff !important;
}
.cases-filters {
display: block !important;
text-align: center !important;
white-space: normal !important;
}
/* --- TUO STILE ORIGINALE --- */
.cases-section {
max-width: 1200px;
margin: auto;
padding: 40px 20px;
text-align: center;
}
.cases-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.case-card {
background-color: #000 !important;
border: 3px solid #000 !important;
border-radius: 8px !important;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: space-between;
text-align: center;
transition: box-shadow 0.3s ease;
}
.case-card:hover {
box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.case-image img {
width: 100%;
display: block;
}
.case-content { padding: 30px 20px; }
.case-footer { padding: 20px; }
.case-title {
font-size: 16px;
font-weight: bold;
margin-bottom: 8px;
color: #fff;
}
.case-doctor {
font-size: 14px;
color: #ddd;
margin-bottom: 15px;
}
/* Buttons */
.download-btn {
display: inline-block;
padding: 12px;
text-decoration: none;
border-radius: 0;
font-weight: bold;
text-transform: uppercase;
font-size: 14px;
transition: all 0.3s ease;
text-align: center;
}
.cases-accordion .download-btn {
background: #00b3e3;
color: #fff !important;
width: 100%;
}
.desktop-btn {
display: block;
width: 100%;
border: 2px solid #00b3e3;
color: #00b3e3 !important;
background: transparent;
}
.desktop-btn:hover {
background: #00b3e3;
color: #fff !important;
}
/* Accordion */
.cases-accordion {
display: none;
margin-top: 20px;
text-align: left;
}
.accordion-item { margin-bottom: 15px; border: 1px solid #ddd; }
.accordion-toggle {
width: 100%;
padding: 14px;
text-align: center;
background: #000;
border: none;
cursor: pointer;
}
.accordion-toggle:hover { background: #333; }
.case-label {
color: #00b3e3; font-size: 14px; font-weight: bold; display: block; margin-bottom: 4px;
}
.case-title-mobile {
font-size: 14px; color: #fff; line-height: 1.4; display: block;
}
.accordion-content { display: none; padding: 15px; background: #fff; text-align: center; }
/* Mobile */
@media (max-width: 768px) {
.cases-grid { display: none; }
.cases-accordion { display: block; }
}
// Accordion
document.querySelectorAll(".accordion-toggle").forEach(btn => {
btn.addEventListener("click", () => {
const c = btn.nextElementSibling;
const open = c.style.display === "block";
document.querySelectorAll(".accordion-content").forEach(x => x.style.display = "none");
c.style.display = open ? "none" : "block";
});
});
// Filtri
document.querySelectorAll(".cases-filters button").forEach(btn => {
btn.addEventListener("click", () => {
document.querySelector(".cases-filters .active")?.classList.remove("active");
btn.classList.add("active");
const f = btn.getAttribute("data-filter");
document.querySelectorAll(".case-card, .accordion-item").forEach(item => {
const cat = item.getAttribute("data-category");
item.style.display = (f === "all" || cat === f) ? "" : "none";
});
});
});
,
STERIFY GEL
Preventing bacterial contamination. Supporting the Tissue Healing.
The Polymeric Hydrogel for the Treatment of Periodontal Disease
DISCOVER MORE
.sterify-section {
display: flex;
align-items: center;
justify-content: center;
padding: 40px 20px;
flex-wrap: wrap;
}
.sterify-section.transparent-bg {
background: transparent;
}
.sterify-image {
flex: 1 1 50%;
text-align: center;
}
.sterify-image img {
max-width: 100%;
height: auto;
}
.sterify-text {
flex: 1 1 50%;
padding: 20px;
color: #000;
}
/* --- Titolo "STERIFY GEL" --- */
.sterify-topline-wrap {
display: inline-block;
position: relative;
margin-bottom: 16px;
}
.sterify-topline {
color: #000;
font-weight: 800;
font-size: 32px;
text-transform: uppercase;
margin: 0 !important;
line-height: 1.1;
padding: 0;
display: inline-block;
position: relative;
}
/* --- Linea automatica sotto il testo --- */
.sterify-divider {
display: block;
height: 2px;
background-color: #000;
width: 100%; /* si adatta alla larghezza del testo sopra */
position: absolute;
bottom: -5px; /* leggermente staccata */
left: 0;
transform: translateY(100%);
}
/* --- Riga grande in azzurro --- */
.sterify-mainline {
color: #00a0e3;
font-size: 42px !important;
margin-top: 0;
margin-bottom: 20px;
line-height: 1.2;
font-weight: 900 !important;
}
/* --- Riga sotto in nero --- */
.sterify-subtext {
font-size: 20px;
margin-bottom: 30px;
line-height: 1.5;
color: #000;
}
/* --- Bottone --- */
.sterify-buttons {
display: flex;
flex-direction: row;
gap: 20px;
flex-wrap: wrap;
}
.sterify-button {
display: inline-block;
padding: 14px 28px;
border: 2px solid #e60000;
background: transparent;
color: #e60000;
text-transform: uppercase;
text-decoration: none;
font-weight: bold;
font-size: 16px;
text-align: center;
transition: all 0.3s ease;
}
.sterify-button:hover {
background: #e60000;
color: #fff;
}
/* --- Mobile --- */
@media (max-width: 768px) {
.sterify-section {
flex-direction: column;
text-align: center;
}
.sterify-text {
padding: 20px 0;
}
.sterify-topline {
font-size: 22px;
}
.sterify-divider {
width: 100%;
left: 0;
transform: translateY(100%);
bottom: -4px;
}
.sterify-mainline {
font-size: 28px !important;
}
.sterify-subtext {
font-size: 16px;
}
.sterify-buttons {
flex-direction: column;
gap: 15px;
}
.sterify-button {
width: 100%;
}
}
,
Are you making a Difference with Sterify Gel?
Let's share it!Have you ever finalized a periodontal treatment with Sterify Gel? Share your experience and inspire your peers. Submit your case and get featured on HuFriedyGroup channels.
Submit Your Clinical Case
,
*For dental professionals only. By downloading these clinical cases you confirm that you are a registered dental practitioner. Refer to the Instructions for Use and clinical data for full indications and safety information.
Sterify is a registered trademark of Sterify Srl.
All company and product names are trademarks of Hu-Friedy Mfg. Co. LLC., its affiliates or related companies, unless otherwise noted.
Targeted Healing Approach
Promo
Grazie per aver partecipato al webinar!
Per te una promo esclusiva dedicata ai professionisti che desiderano integrare nella pratica clinica
un approccio basato su valutazione accurata, trattamento non chirurgico e supporto della guarigione.
ORDINA ORA
/* ================================================
DESKTOP
=================================================== */
@media (min-width:769px) {
#tha-title {
font-size:52px !important;
}
#tha-sub {
font-size:30px !important;
}
#tha-desc {
font-size:20px !important;
line-height:1.55 !important;
}
.hero-desktop {
display:block !important;
}
.hero-mobile {
display:none !important;
}
}
/* ================================================
MOBILE
=================================================== */
@media (max-width:768px) {
#tha-title {
font-size:24px !important;
line-height:1.25 !important;
}
#tha-sub {
font-size:22px !important;
}
#tha-desc {
font-size:18px !important;
max-width:90% !important;
margin:0 auto !important;
}
.hero-desktop {
display:none !important;
}
.hero-mobile {
display:block !important;
}
}
/* ================================================
CTA BUTTON - stile richiesto
=================================================== */
.tha-cta-container {
margin:45px auto 20px auto; /* ,
Per soddisfare le esigenze uniche di ogni paziente e professionista nella cura parodontale,
HuFriedyGroup promuove un approccio personalizzato che inizia con una
diagnosi precisa (ASSESS), prosegue con una pulizia dentale accurata e confortevole (CARE)
e si conclude con una sigillatura su misura delle tasche parodontali, favorendo così una
guarigione fisiologica ottimale (BOOST).
/* Wrapper che replica lo stesso allineamento della sezione sopra */
.tha-wrapper {
max-width: 1100px; /* larghezza identica ai contenitori Drupal */
margin: 0 auto; /* centrato */
padding: 0 20px; /* padding identico al contenitore superiore */
}
/* Paragrafi */
.tha-paragraph {
font-size:20px;
font-weight:400;
color:#000;
line-height:1.55;
margin:0 auto 30px auto;
padding:0;
text-align:center;
}
/* Griglia icone desktop */
.tha-phases {
display:grid;
grid-template-columns:repeat(3,1fr);
gap:60px;
margin:40px 0;
text-align:center;
}
/* Card icone */
.phase-card {
display:flex;
align-items:center;
justify-content:center;
}
.phase-card img {
max-width:250px;
transition:transform 0.2s ease;
}
.phase-card:hover img {
transform:scale(1.05);
}
/* MOBILE */
@media (max-width:768px) {
.tha-paragraph {
font-size:18px;
max-width:95%;
}
.tha-phases {
display:flex;
overflow-x:auto;
scroll-snap-type:x mandatory;
gap:20px;
}
.phase-card {
flex:0 0 75%;
scroll-snap-align:center;
}
.phase-card img {
max-width:180px;
}
}
,
Targeted Healing Approach
L'evoluzione della cura parodontale personalizzata
Un approccio clinico completo progettato per migliorare i risultati parodontali, combinando precisione diagnostica, terapia basata sull'evidenza e supporto ottimizzato alla guarigione.
SCOPRI DI PIÙ
.efp-section {
display:flex;
align-items:center;
justify-content:center;
padding:40px 20px;
flex-wrap:wrap;
background:transparent;
}
.efp-image {flex:1 1 50%;text-align:center;}
.efp-image img {max-width:100%;height:auto;}
.efp-text {flex:1 1 50%;padding:20px;color:#fff;}
.efp-title {
font-size:54px !important;
font-weight:900 !important;
line-height:1.1;
margin:0 0 8px 0;
}
.efp-subtitle {
color:#fff !important;
font-weight:700 !important;
font-size:26px !important;
line-height:1.2;
margin:0 0 12px 0;
}
.efp-description {
color:#fff;
font-size:18px;
line-height:1.45;
margin:0 0 18px 0;
}
.efp-buttons {display:flex;flex-wrap:wrap;gap:15px;}
.efp-button {
display:inline-block;
padding:12px 25px;
border:2px solid #fff !important;
background:transparent;
color:#fff !important;
text-transform:uppercase;
text-decoration:none;
font-weight:700;
transition:all .25s ease;
}
.efp-button:link, .efp-button:visited {color:#fff !important;}
.efp-button:hover, .efp-button:focus-visible {
background:#fff;
color:#69c3cb !important;
outline:none;
}
@media (max-width:768px) {
.efp-section {flex-direction:column;text-align:center;}
.efp-text {padding:20px 0;}
.efp-title {font-size:42px !important;margin-bottom:8px;}
.efp-subtitle {font-size:22px !important;margin-bottom:10px;}
.efp-buttons {flex-direction:column;align-items:center;}
.efp-button {width:100%;max-width:300px;text-align:center;}
}
,
APPROFITTA ORA DELL’OFFERTA RISERVATA AI PARTECIPANTI DEL WEBINAR
Acquista il bundle dedicato*1x Sonda EFP - PCPS36 (od in alternativa una sonda PCPUNC156 classica da 15mm) 1x Sterify Gel (0,3 ml)
- STY-GEL 0301 Prezzo speciale: 59 € + IVA (valore 101,40 €)
ORDINA ORA
,
*Offerta valida dal 10/12/2025 al 31/06/2026. Solo per i partecipanti al webinar
Sterify è un marchio registrato di Sterify Srl. Tutti gli altri nomi di società e prodotti sono marchi di Hu-Friedy Mfg. Co. LLC., delle sue affiliate o società collegate, se non diversamente specificato.
/* =========================================
APPLE-STYLE HERO (Drupal block friendly)
Desktop: carousel orizzontale con frecce + dots
Mobile: verticale (stack)
Full width: rompe il container e va edge-to-edge
========================================= */
.apple-hero {
/* FULL BLEED: forza a tutto schermo anche dentro container */
width: 100vw;
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
position: relative;
padding: 24px 0 18px;
background: transparent;
}
/* Track desktop */
.apple-hero__track {
display: flex;
gap: 32px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
padding: 0 28px; /* respiro laterale */
}
.apple-hero__track::-webkit-scrollbar { display: none; }
/* Slide */
.apple-hero__slide {
position: relative;
flex: 0 0 86%;
scroll-snap-align: center;
border-radius: 26px;
overflow: hidden;
background: #000;
box-shadow: 0 14px 40px rgba(0,0,0,0.18);
}
/* Immagine */
.apple-hero__slide img {
width: 100%;
height: 100%;
object-fit: cover;
aspect-ratio: 16 / 9;
display: block;
}
/* Overlay testo (tipo Apple TV) */
.apple-hero__content {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
padding: 24px;
background: linear-gradient(
to bottom,
rgba(0,0,0,0.10),
rgba(0,0,0,0.45)
);
}
.apple-hero__title {
margin: 0;
font-size: clamp(34px, 5.5vw, 86px);
font-weight: 600;
letter-spacing: -0.02em;
line-height: 1.05;
text-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
/* Frecce */
.apple-hero__arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 44px;
height: 44px;
border: 0;
border-radius: 999px;
cursor: pointer;
background: rgba(255,255,255,0.92);
box-shadow: 0 10px 25px rgba(0,0,0,0.18);
font-size: 22px;
line-height: 44px;
text-align: center;
user-select: none;
}
.apple-hero__arrow--prev { left: 14px; }
.apple-hero__arrow--next { right: 14px; }
/* Dots */
.apple-hero__dots {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 14px;
}
.apple-hero__dot {
width: 9px;
height: 9px;
border-radius: 50%;
border: 0;
padding: 0;
cursor: pointer;
background: rgba(0,0,0,0.25);
}
.apple-hero__dot.is-active { background: rgba(0,0,0,0.85); }
/* =========================
MOBILE: verticale (stack)
- niente overflow orizzontale
- slide 100% in colonna
- frecce e dots nascosti
========================= */
@media (max-width: 767px) {
.apple-hero__track {
display: grid;
grid-template-columns: 1fr;
gap: 18px;
overflow: visible;
scroll-snap-type: none;
padding: 0 16px;
}
.apple-hero__slide {
flex: initial;
width: 100%;
scroll-snap-align: unset;
border-radius: 22px;
}
.apple-hero__arrow,
.apple-hero__dots {
display: none !important;
}
}
‹
›
Scissione
Pluribus
Novità
(function () {
const track = document.getElementById('appleHeroTrack');
const dotsWrap = document.getElementById('appleHeroDots');
const prevBtn = document.querySelector('.apple-hero__arrow--prev');
const nextBtn = document.querySelector('.apple-hero__arrow--next');
const slides = Array.from(track.querySelectorAll('.apple-hero__slide'));
// Su mobile è verticale: niente JS carousel (evita comportamenti strani)
const mq = window.matchMedia('(max-width: 767px)');
function isMobile() { return mq.matches; }
// Crea dots solo desktop
function buildDots() {
dotsWrap.innerHTML = '';
slides.forEach((_, i) => {
const b = document.createElement('button');
b.type = 'button';
b.className = 'apple-hero__dot';
b.setAttribute('aria-label', 'Vai alla slide ' + (i + 1));
b.addEventListener('click', () => {
slides[i].scrollIntoView({ behavior: 'smooth', inline: 'center', block: 'nearest' });
});
dotsWrap.appendChild(b);
});
}
function activeDotByCenter() {
if (isMobile()) return;
const dots = Array.from(dotsWrap.querySelectorAll('.apple-hero__dot'));
if (!dots.length) return;
const trackRect = track.getBoundingClientRect();
const trackCenter = trackRect.left + trackRect.width / 2;
let bestIndex = 0;
let bestDist = Infinity;
slides.forEach((s, i) => {
const r = s.getBoundingClientRect();
const c = r.left + r.width / 2;
const d = Math.abs(c - trackCenter);
if (d < bestDist) { bestDist = d; bestIndex = i; }
});
dots.forEach(d => d.classList.remove('is-active'));
if (dots[bestIndex]) dots[bestIndex].classList.add('is-active');
}
function scrollByOne(dir) {
if (isMobile()) return;
const w = slides[0].getBoundingClientRect().width;
track.scrollBy({ left: dir * (w + 32), behavior: 'smooth' });
}
function enableDesktopCarousel() {
buildDots();
activeDotByCenter();
track.addEventListener('scroll', activeDotByCenter, { passive: true });
prevBtn.addEventListener('click', () => scrollByOne(-1));
nextBtn.addEventListener('click', () => scrollByOne(1));
}
function disableForMobile() {
// pulizia dots su mobile
dotsWrap.innerHTML = '';
}
// Init + switch on resize
function refresh() {
if (isMobile()) {
disableForMobile();
} else {
enableDesktopCarousel();
}
}
refresh();
mq.addEventListener('change', () => location.reload());
})();
,
/* =========================================
APPLE-STYLE FEATURED SLIDER
Desktop: carosello orizzontale
Mobile: card verticale
========================================= */
.apple-tv-slider {
width: 100vw;
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
position: relative;
padding: 18px 0 20px;
background: #fff;
overflow: hidden;
}
.apple-tv-slider * {
box-sizing: border-box;
}
.apple-tv-slider__viewport {
position: relative;
}
.apple-tv-slider__track {
display: flex;
gap: 18px;
overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
padding: 0 44px;
}
.apple-tv-slider__track::-webkit-scrollbar {
display: none;
}
.apple-tv-slider__slide {
position: relative;
flex: 0 0 78%;
scroll-snap-align: center;
border-radius: 0;
overflow: hidden;
background: #ddd center center / cover no-repeat;
min-height: 560px;
text-decoration: none;
color: #fff;
}
.apple-tv-slider__slide::before {
content: "";
position: absolute;
inset: 0;
background:
linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.18) 42%, rgba(0,0,0,0.10) 100%);
z-index: 1;
}
.apple-tv-slider__inner {
position: relative;
z-index: 2;
min-height: 560px;
display: flex;
align-items: flex-end;
padding: 36px 56px 36px;
}
.apple-tv-slider__content {
max-width: 780px;
}
.apple-tv-slider__eyebrow {
display: inline-block;
margin: 0 0 14px;
font-size: 15px;
font-weight: 600;
line-height: 1.2;
opacity: 0.95;
}
.apple-tv-slider__title {
margin: 0 0 16px;
font-size: clamp(28px, 4.2vw, 64px);
line-height: 0.98;
font-weight: 700;
letter-spacing: -0.03em;
text-transform: uppercase;
}
.apple-tv-slider__bottom {
display: flex;
align-items: center;
gap: 18px;
flex-wrap: wrap;
}
.apple-tv-slider__button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 48px;
padding: 12px 22px;
border-radius: 999px;
background: #fff;
color: #111;
text-decoration: none;
font-size: 16px;
font-weight: 600;
line-height: 1;
white-space: nowrap;
}
.apple-tv-slider__text {
margin: 0;
font-size: 16px;
line-height: 1.35;
color: #fff;
text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.apple-tv-slider__text strong {
font-weight: 700;
}
/* frecce */
.apple-tv-slider__arrow {
position: absolute;
top: 50%;
z-index: 5;
transform: translateY(-50%);
width: 56px;
height: 56px;
border: 0;
border-radius: 999px;
background: rgba(255,255,255,0.88);
color: #444;
font-size: 46px;
line-height: 1;
cursor: pointer;
box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.apple-tv-slider__arrow--prev { left: 12px; }
.apple-tv-slider__arrow--next { right: 12px; }
/* dots + pause */
.apple-tv-slider__footer {
display: flex;
justify-content: center;
align-items: center;
gap: 18px;
margin-top: 14px;
padding: 0 20px;
}
.apple-tv-slider__dots {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
}
.apple-tv-slider__dot {
width: 10px;
height: 10px;
padding: 0;
border: 0;
border-radius: 50%;
background: rgba(0,0,0,0.28);
cursor: pointer;
}
.apple-tv-slider__dot.is-active {
background: rgba(0,0,0,0.78);
}
.apple-tv-slider__pause {
width: 38px;
height: 38px;
border: 0;
border-radius: 999px;
background: #e9e9ef;
color: #111;
font-weight: 700;
cursor: pointer;
line-height: 1;
}
/* MOBILE */
@media (max-width: 767px) {
.apple-tv-slider {
padding: 0 0 16px;
background: #fff;
}
.apple-tv-slider__track {
gap: 14px;
padding: 0 14px;
}
.apple-tv-slider__slide {
flex: 0 0 86%;
min-height: 720px;
border-radius: 26px;
background-position: center top;
}
.apple-tv-slider__slide::before {
background:
linear-gradient(to top, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.22) 45%, rgba(0,0,0,0.08) 100%);
}
.apple-tv-slider__inner {
min-height: 720px;
align-items: flex-end;
justify-content: center;
text-align: center;
padding: 28px 24px 28px;
}
.apple-tv-slider__content {
max-width: 100%;
}
.apple-tv-slider__eyebrow {
margin-bottom: 12px;
font-size: 14px;
}
.apple-tv-slider__title {
margin-bottom: 10px;
font-size: clamp(28px, 8vw, 44px);
text-transform: none;
line-height: 1.05;
}
.apple-tv-slider__bottom {
flex-direction: column;
gap: 12px;
}
.apple-tv-slider__button {
min-height: 56px;
padding: 14px 28px;
font-size: 17px;
}
.apple-tv-slider__text {
font-size: 17px;
line-height: 1.3;
}
.apple-tv-slider__arrow {
width: 52px;
height: 52px;
font-size: 42px;
background: rgba(255,255,255,0.82);
}
.apple-tv-slider__arrow--prev { left: 10px; }
.apple-tv-slider__arrow--next { right: 10px; }
.apple-tv-slider__footer {
gap: 16px;
margin-top: 12px;
}
.apple-tv-slider__dots {
gap: 10px;
}
}
‹
›
Lorem ipsum
Lorem Ipsum Dolor
Lorem Ipsum
Lorem ipsum · Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Lorem ipsum
Lorem Ipsum Amet
Lorem Ipsum
Lorem ipsum · Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Lorem ipsum
Lorem Ipsum Elit
Lorem Ipsum
Lorem ipsum · Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.
❚❚
(function () {
const track = document.getElementById('appleTvSliderTrack');
const dotsWrap = document.getElementById('appleTvSliderDots');
const prevBtn = document.querySelector('.apple-tv-slider__arrow--prev');
const nextBtn = document.querySelector('.apple-tv-slider__arrow--next');
const pauseBtn = document.getElementById('appleTvSliderPause');
const slides = Array.from(track.querySelectorAll('.apple-tv-slider__slide'));
const mq = window.matchMedia('(max-width: 767px)');
let autoplay = true;
let interval = null;
function applyBackgrounds() {
slides.forEach((slide) => {
const desktop = slide.getAttribute('data-desktop-image');
const mobile = slide.getAttribute('data-mobile-image');
const image = mq.matches ? mobile : desktop;
slide.style.backgroundImage = 'url("' + image + '")';
});
}
function buildDots() {
dotsWrap.innerHTML = '';
slides.forEach((_, i) => {
const dot = document.createElement('button');
dot.type = 'button';
dot.className = 'apple-tv-slider__dot';
dot.setAttribute('aria-label', 'Vai alla slide ' + (i + 1));
dot.addEventListener('click', function () {
goToSlide(i);
});
dotsWrap.appendChild(dot);
});
}
function getCurrentIndex() {
const trackRect = track.getBoundingClientRect();
const trackCenter = trackRect.left + trackRect.width / 2;
let bestIndex = 0;
let bestDist = Infinity;
slides.forEach((slide, i) => {
const rect = slide.getBoundingClientRect();
const center = rect.left + rect.width / 2;
const dist = Math.abs(center - trackCenter);
if (dist < bestDist) {
bestDist = dist;
bestIndex = i;
}
});
return bestIndex;
}
function updateDots() {
const current = getCurrentIndex();
const dots = Array.from(dotsWrap.querySelectorAll('.apple-tv-slider__dot'));
dots.forEach((dot, i) => {
dot.classList.toggle('is-active', i === current);
});
}
function goToSlide(index) {
slides[index].scrollIntoView({
behavior: 'smooth',
inline: 'center',
block: 'nearest'
});
}
function nextSlide() {
const current = getCurrentIndex();
const next = (current + 1) % slides.length;
goToSlide(next);
}
function prevSlide() {
const current = getCurrentIndex();
const prev = (current - 1 + slides.length) % slides.length;
goToSlide(prev);
}
function startAutoplay() {
stopAutoplay();
if (!autoplay) return;
interval = setInterval(nextSlide, 4500);
}
function stopAutoplay() {
if (interval) {
clearInterval(interval);
interval = null;
}
}
prevBtn.addEventListener('click', function () {
prevSlide();
startAutoplay();
});
nextBtn.addEventListener('click', function () {
nextSlide();
startAutoplay();
});
pauseBtn.addEventListener('click', function () {
autoplay = !autoplay;
pauseBtn.textContent = autoplay ? '❚❚' : '▶';
pauseBtn.setAttribute('aria-label', autoplay ? 'Metti in pausa autoplay' : 'Avvia autoplay');
if (autoplay) {
startAutoplay();
} else {
stopAutoplay();
}
});
track.addEventListener('scroll', updateDots, { passive: true });
window.addEventListener('resize', function () {
applyBackgrounds();
updateDots();
});
applyBackgrounds();
buildDots();
updateDots();
startAutoplay();
})();
.stf-wrap{
max-width:1140px;
margin:0 auto;
padding:90px 16px 24px; /* più spazio sopra */
}
.stf-hero{
text-align:center;
}
.stf-hero .stf-brand{
margin:0 0 12px;
font-weight:800;
letter-spacing:.6px;
color:#00b3e3;
font-size:clamp(30px,4.2vw,54px);
line-height:1.05;
}
/* separatore “ – ”: visibile su desktop */
.stf-hero .stf-sep{
display:inline;
}
/* su mobile: vai a capo tra le due parti e togli il trattino */
@media (max-width: 600px){
.stf-hero .stf-sep{
display:none; /* niente trattino */
}
.stf-hero .stf-mobile-break{
display:block; /* a capo */
}
}
.stf-hero .stf-title{
margin:0 0 14px;
color:#0b1220;
font-weight:800;
font-size:clamp(18px,2.2vw,28px);
line-height:1.15;
}
.stf-hero .stf-text{
margin:0 auto;
max-width:92ch;
color:#0b1220;
opacity:.9;
font-size:clamp(14px,1.4vw,18px);
line-height:1.65;
}
Sterify Gel – Your Voice Matters
Share your clinical experience and help shape the future of periodontal care
Sterify Gel is more than a treatment solution—it is supported by clinical evidence, real-world experience,
and continuous dialogue with dental professionals. This page is designed to support education, encourage
knowledge sharing, and gather valuable insights from clinicians using Sterify Gel in daily practice.
Your feedback plays a key role in advancing clinical knowledge and supporting continuous improvement.
,
.stf-cards{
max-width:1200px;
margin:0 auto;
padding:24px 16px 64px;
}
.stf-cards-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}
.stf-card{
background:#ffffff;
border:1px solid #e6e6e6;
display:flex;
flex-direction:column;
transition:transform .25s ease, box-shadow .25s ease;
}
.stf-card:hover{
transform:translateY(-6px);
box-shadow:0 14px 30px rgba(0,0,0,.12);
}
/* IMMAGINE BASSA (tipo banner) */
.stf-card-image{
height:140px; /*
,
.stf-faq{
max-width:1200px;
margin:0 auto;
padding:56px 16px 40px;
}
.stf-faq h2{
text-align:center;
margin:0 0 32px;
font-weight:900;
letter-spacing:.4px;
color:#00b3e3;
font-size:clamp(26px,3vw,40px);
}
.stf-faq-item{
border:1px solid #00b3e3;
margin-bottom:14px;
}
.stf-faq-question{
display:flex;
justify-content:space-between;
align-items:center;
width:100%;
background:#00b3e3;
color:#ffffff;
font-weight:800;
text-transform:uppercase;
letter-spacing:.4px;
padding:18px 20px;
font-size:14px;
cursor:pointer;
border:none;
}
.stf-faq-question span{
pointer-events:none;
}
.stf-faq-icon{
font-size:20px;
line-height:1;
transition:transform .3s ease;
}
.stf-faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .35s ease;
background:#ffffff;
}
.stf-faq-answer p{
margin:0;
padding:18px 20px;
color:#0b1220;
font-size:15px;
line-height:1.65;
}
.stf-faq-item.active .stf-faq-answer{
max-height:600px;
}
.stf-faq-item.active .stf-faq-icon{
transform:rotate(45deg);
}
/* CTA PDF */
.stf-faq-pdf{
text-align:center;
margin-top:40px;
}
.stf-faq-pdf a{
display:inline-block;
padding:14px 26px;
border:2px solid #00b3e3;
color:#00b3e3;
font-weight:800;
text-transform:uppercase;
letter-spacing:.4px;
font-size:14px;
text-decoration:none;
transition:background .25s ease, color .25s ease;
}
.stf-faq-pdf a:hover{
background:#00b3e3;
color:#ffffff;
}
@media (max-width: 600px){
.stf-faq-question{
font-size:13px;
padding:16px;
}
.stf-faq-answer p{
padding:16px;
}
}
FAQs
What are the indications for using Sterify Gel?
+
Sterify Gel is indicated as an adjunct in non-surgical periodontal therapy to
support soft tissue healing and protection following clinical procedures,
according to professional judgement and standard clinical protocols.
How is Sterify Gel applied?
+
Sterify Gel is applied directly into the periodontal pocket or treated area using
the dedicated syringe, immediately after completion of instrumentation and
according to the instructions for use.
Can Sterify Gel be combined with other periodontal treatments?
+
Yes. Sterify Gel can be integrated into existing periodontal treatment protocols,
including non-surgical therapy and maintenance phases, at the clinician’s
discretion.
Is Sterify Gel suitable for repeated applications?
+
Repeated applications may be performed when clinically indicated, based on the
patient’s condition and professional judgement, in accordance with the product’s
instructions.
Are there contraindications or precautions for use?
+
Sterify Gel should be used according to the instructions for use. As with any
clinical product, the clinician should evaluate patient-specific conditions and
known sensitivities before application.
Download Full FAQs (PDF)
(function(){
var items = document.querySelectorAll('.stf-faq-question');
items.forEach(function(btn){
btn.addEventListener('click', function(){
var item = btn.parentElement;
item.classList.toggle('active');
});
});
})();
warranty
Terms Page
,
Here you can find the most up-to-date warranty policy applicable to Europe, the Middle East, and Africa.
Please use the link below to download and review the full warranty terms for our products and services. We encourage you to read them carefully to understand coverage and eligibility
DOWNLOAD
,
Warranty and Service
Hu-Friedy is dedicated to providing a level of support that is equal to the quality of its instruments.
If you have questions regarding products or services, please contact the Hu-Friedy Customer Service team at 00800 48 37 43 39 (Free call) at any time or submit a question via the Contact page.
Other services, such as the sales of return and our generous complaint policy also reflect the high obligation towards our customers. According to our traditional customer focus we also offer customized instruments.
For further questions and advice, please contact the Hu-Friedy Customer Service.
,
CASSETTE WARRANTY REGISTRATION
Complete and submit the registration form for your cassette
Enter