@charset "UTF-8";
@import url(main.css);
.carousel-inner.carousel-inner-homepage { display: none; }

.b-bloc-divider { height: 40px !important; background-color: transparent !important; border: none !important; box-shadow: none !important; }

.animated-border-button:after { background-color: #a2cf61; }

.navbar { box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1); /* Optionnel : ajoute une ombre subtile */ }

.fs-6.lead.mt-4.mb-4 { color: #666; font-weight: 400; line-height: 1.6; }

.card.card-cover.h-100.overflow-hidden.rounded-4.shadow-lg { border-radius: 0px !important; }

.first-activity-div.shadow-lg { box-shadow: none !important; }

.second-activity-div.shadow-lg { box-shadow: none !important; }

.third-activity-div.shadow-lg { box-shadow: none !important; }

.first-activity-div .col-12.col-sm-8.col-lg-5.my-0.order-2.order-lg-2.order-xl-2.order-xxl-2 { border: 2px solid #65b7e7; padding: 10px; }

.second-activity-div .col-12.col-sm-8.col-lg-5.my-0.order-2.order-lg-2.order-xl-2.order-xxl-2 { border: 2px solid #fda646; padding: 10px; }

.third-activity-div .col-12.col-sm-8.col-lg-5.my-0.order-2.order-lg-2.order-xl-2.order-xxl-2 { border: 2px solid #a2cf61; padding: 10px; }

a.grow.button_header.text-color-fourth.mx-3.mx-lg-2.p-2.rounded-pill.text-decoration-none.button-header-telephone { border-radius: 4px !important; color: #fff !important; }

.strong { font-weight: 600 !important; }

.lead.p-4.text-color-sixth { font-weight: 400; font-size: 1.05rem; color: #666 !important; padding: 25px 120px !important; line-height: 1.6; }

/* 📱 Responsive : padding plus petit sur mobile */
@media (max-width: 768px) { .lead.p-4.text-color-sixth { padding: 20px 30px !important; /* Ajuste ici selon ton rendu */ font-size: 0.95rem; /* Optionnel : texte légèrement plus petit */ } }

a.button_homepageDoubleScreen.ctaLinks-button.text-color-fourth.p-3.fs-6.fw-bold.m-2 { border-radius: 4px; color: #fff !important; font-size: 1.1rem !important; }

a.nav-link.fs-6.dropdown-toggle.px-0.text-color-secondary.text-center { display: none; }

.fs-6.lead { color: #666; }

/* Galerie */
.gallery-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; width: 100%; max-width: 1600px; margin: 0 auto; padding: 80px 0; padding-top: 60px; }

.gallery-5 img { width: 100%; aspect-ratio: 1/1; object-fit: cover; cursor: pointer; transition: transform 0.2s ease; }

.gallery-5 img:hover { transform: scale(1.03); }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(3px); justify-content: center; align-items: center; z-index: 9999; }

.lightbox img { max-width: 90%; max-height: 90vh; box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }

.close-btn { position: absolute; top: 20px; right: 40px; font-size: 40px; color: white; cursor: pointer; }

/* Responsive */
@media (max-width: 1024px) { .gallery-5 { grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 600px) { .gallery-5 { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 600px) { .gallery-5 img:nth-child(5) { display: none; } }

/* =========================== SECTION : BLOC REALISATIONS =========================== */
.realisations-section { background: #FFFFFF; padding: 60px 20px; }

.overlay { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }

.realisations-main-title { text-align: center; font-size: 2.5rem; color: #65b7e7; font-weight: 600 !important; margin-bottom: 32px; }

.filter-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }

.filter-btn { background: #f0f0f0; border: none; color: #333; font-size: 1.1rem; padding: 12px 24px; border-radius: 4px; cursor: pointer; font-weight: 600; box-shadow: none; display: flex; align-items: center; justify-content: center; min-height: 52px; line-height: 1.2; transition: background 0.2s; text-align: center; }

.filter-btn.active { background: #65b7e7; color: #fff; }

.filter-btn p { margin-bottom: 0 !important; }

.realisations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.realisation-card { border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); transition: transform 0.2s; }

.realisation-card:hover { transform: translateY(-4px); }

.realisation-card img { width: 100%; height: 320px; object-fit: cover; display: block; cursor: pointer; }

.realisation-card.hidden { display: none; }

/* Modal pour l’image agrandie */
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.85); align-items: center; justify-content: center; }

.modal-content { max-width: 500px; max-height: 70vh; width: auto; height: auto; border-radius: 8px; background: #fff; }

.modal-close { position: absolute; top: 24px; right: 32px; color: #fff; font-size: 36px; font-weight: bold; cursor: pointer; z-index: 1100; }

.modal-close:hover { color: #ffae42; }

@media (max-width: 900px) { .filter-tabs { gap: 8px; font-size: 0.9rem; } .filter-btn { padding: 10px 20px; font-size: 1rem; min-height: 48px; } .realisations-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; } .realisation-card img { height: 240px; } .modal-content { max-width: 90%; max-height: 90%; } }

/* =========================== SECTION : BLOC ACCUEIL =========================== */
.hero-bloc { position: relative; background-image: url("https://firebasestorage.googleapis.com/v0/b/refpro-app-ca244.appspot.com/o/customers%2FqWPLZjLYBeYtaGQ0MI8RdizQMBz2%2Fimages%2F20211125_101959_ydbf.webp?alt=media&token=ed771a1a-2992-4713-a4e8-a72adc90f198"); background-size: cover; background-position: center; color: #fff; padding: 150px 8% 190px; /* espace en bas pour la pointe */ overflow: hidden; }

.hero-bloc::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.3); z-index: 0; }

/* on place le contenu au-dessus du voile */
.hero-bloc-content { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 60px; flex-wrap: wrap; }

/* Texte à gauche */
.hero-bloc-text { flex: 1 1 45%; max-width: 600px; }

.hero-bloc-text h1 { font-size: 2.8rem; font-weight: 700; line-height: 1.25; margin-bottom: 40px; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35); }

.hero-bloc-logo { max-width: 200px; height: auto; margin-bottom: 10px; }

.hero-bloc-btn { display: inline-block; background: #65b7e7; color: #fff; padding: 15px 35px; font-weight: 600; text-decoration: none; border-radius: 4px; transition: background 0.3s; font-size: 1.1rem; }

.hero-bloc-btn:hover { background: #fda646; }

/* Cartes à droite */
.hero-bloc-cards { flex: 1 1 45%; display: flex; flex-direction: column; gap: 16px; align-items: flex-end; margin-right: 60px; }

.hero-bloc-card { display: inline-flex; align-items: center; justify-content: left; background: #bdbdbd4a; color: #ffffff; border-radius: 5px; padding: 20px 20px; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12); border-left: 6px solid #a2cf61; width: 240px; max-width: 100%; min-height: 55px; }

.hero-bloc-card span { font-weight: 500; font-size: 1.3rem; line-height: 1; white-space: nowrap; }

/* Pointe en bas */
.hero-bloc-shape { position: absolute; left: 0; bottom: 0; width: 100%; height: 140px; background: #fff; clip-path: polygon(0 50%, 50% 100%, 100% 50%, 100% 100%, 0 100%); }

/* Responsive */
@media (max-width: 900px) { .hero-bloc-content { flex-direction: column; text-align: center; gap: 32px; justify-content: center; /* ✔️ Corrige le décalage horizontal */ align-items: center; /* ✔️ Centre vraiment tout */ } .hero-bloc-text { flex: unset; max-width: 100%; /* ✔️ Permet le centrage réel */ } .hero-bloc-text h1 { font-size: 2.2rem; text-align: center; } .hero-bloc-logo { margin-left: auto; /* ✔️ Centre le logo */ margin-right: auto; } .hero-bloc-btn { margin-left: auto; /* ✔️ Centre le bouton */ margin-right: auto; } .hero-bloc-cards { width: 100%; align-items: center; /* ✔️ Corrige l’alignement trop à droite */ margin-right: 0; /* ❗ Supprime le décalage */ } .hero-bloc-card { width: auto; } }

/* =========================== SECTION : SERVICES =========================== */
.services-section { background-color: #ffffff; padding: 100px 8%; text-align: center; }

/* En-tête */
.services-header h4 { text-transform: uppercase; color: #a2cf61; font-weight: 600; letter-spacing: 1px; margin-bottom: 10px; }

.services-header h2 { font-size: 2.4rem; font-weight: 600 !important; color: #333; margin-bottom: 20px; }

.services-header p { color: #666; font-size: 1rem; max-width: 700px; margin: 0 auto 60px; line-height: 1.6; }

/* --- Cartes --- */
.services-cards { display: flex; justify-content: center; gap: 30px; flex-wrap: nowrap; }

.service-card { position: relative; background-color: #f8f8f8; width: 300px; height: 300px; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1); overflow: visible; border-radius: 0; /* ✅ coins droits */ transition: transform 0.3s ease, box-shadow 0.3s ease; }

.service-card:hover { transform: translateY(-6px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); }

/* ✅ Image pleine carte */
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }

.service-card:hover img { transform: scale(1.05); }

/* ✅ Bouton centré sur la bordure inférieure */
.service-btn { position: absolute; bottom: -20px; /* le bouton “sort” un peu du carré */ left: 50%; transform: translateX(-50%); background-color: #65b7e7; color: #fff !important; padding: 15px 30px; border-radius: 4px; font-weight: 600; font-size: 1.1rem; text-decoration: none; white-space: nowrap; /* ✅ empêche les retours */ display: inline-block; /* ✅ force le bouton à gérer sa propre largeur */ width: auto; /* ✅ pas de contrainte fixe */ max-width: none; /* ✅ enlève toute limitation */ text-align: center; transition: background 0.3s; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); }

.service-btn:hover { background-color: #fda646; color: #ffffff; }

/* ✅ léger dégradé sur image pour lisibilité */
.service-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 60%); z-index: 1; }

/* place le bouton au-dessus du dégradé */
.service-btn { z-index: 2; }

/* Responsive */
/* Tablette : 2 cartes par ligne */
@media (max-width: 1200px) { .services-cards { flex-wrap: wrap; /* autorise retour */ } .service-card { width: 45%; height: 260px; } }

/* Mobile : 1 carte par ligne */
@media (max-width: 900px) { .services-cards { flex-direction: column; align-items: center; gap: 60px; } .service-card { width: 280px; height: 280px; } }

/* =========================== SECTION : QUALIFICATIONS =========================== */
.qualifications-section { padding: 120px 8%; background-color: #fff; text-align: center; padding-top: 100px; }

.qualifications-section .section-title { font-size: 2.2rem; font-weight: 600 !important; margin-bottom: 60px; color: #333; }

.cards-qualifications { display: flex; justify-content: center; align-items: flex-start; gap: 60px; flex-wrap: wrap; }

.card-qualif { position: relative; background-color: #fff; color: #fff; border-radius: 0px; padding: 40px 30px 60px; max-width: 500px; text-align: left; border: 3px solid #a2cf61; }

.card-qualif h3 { font-size: 1.2rem; margin-top: 20px; font-weight: 600 !important; color: #333; text-align: center; }

.card-qualif p { font-size: 1rem; line-height: 1.6; margin-bottom: 0; color: #666; text-align: center; }

.logo-bubble { position: absolute; bottom: -50px; left: 75%; transform: translateX(-50%); width: 150px; height: 100px; background-color: #fff; border-radius: 4%; display: flex; align-items: center; justify-content: center; }

.logo-bubble img { width: 100%; height: auto; }

.big-logo { width: 40% !important; /* agrandit le logo */ height: 100px; }

/* --- Responsive --- */
@media (max-width: 900px) { .cards-qualifications { flex-direction: column; align-items: center; gap: 80px; } .card-qualif { max-width: 90%; } }

/* =========================== SECTION : TEXTE AVEC PICS =========================== */
.bloc-pic { --dip: 60px; /* profondeur des pics */ background: #f3f3f3; color: #666; padding: 120px 10%; text-align: center; clip-path: polygon(0 0, 50% var(--dip), 100% 0, 100% calc(100% - var(--dip)), 50% 100%, 0 calc(100% - var(--dip))); }

.bloc-pic-content { max-width: 1000px; margin: 0 auto; }

.bloc-pic-content h2 { font-size: 2rem; font-weight: 600 !important; margin-bottom: 20px; color: #fda646; margin-top: 20px; }

.bloc-pic-content p { font-size: 1.05rem; line-height: 1.6; color: #555; }

.bloc-pic-btn { display: inline-block; margin-top: 30px; padding: 12px 28px; background-color: #65b7e7; color: #fff !important; text-decoration: none; font-weight: 600; border-radius: 4px; font-size: 1.1rem; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }

.bloc-pic-btn:hover { background-color: #fda646; box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); }

/* --- Responsive --- */
@media (max-width: 768px) { .bloc-pic { --dip: 40px; padding: 90px 6%; } .bloc-pic-content h2 { font-size: 1.6rem; } .bloc-pic-content p { font-size: 1rem; } }

/* =========================== SECTION : ICONS =========================== */
.engagements-section { --dip: 60px; /* profondeur des pics */ background-image: url("https://storage.googleapis.com/refpro-app-ca244.appspot.com/customers%2FqWPLZjLYBeYtaGQ0MI8RdizQMBz2%2Fimages%2FImages_fond_bvyu.webp"); background-size: cover; background-position: center; background-attachment: fixed; padding: 80px 20px; position: relative; color: white; text-align: center; clip-path: polygon(0 0, 50% var(--dip), 100% 0, 100% calc(100% - var(--dip)), 50% 100%, 0 calc(100% - var(--dip))); }

.engagements-section .overlay { padding: 40px 20px; }

.engagements-section .engagements-title { margin-bottom: 100px; font-weight: 600 !important; color: #333; }

.engagements-section .engagements-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; max-width: 1200px; margin: 0 auto; }

.engagements-section .card { background-color: #fff; background-repeat: no-repeat; background-position: center 20px; background-size: 100px; padding: 120px 20px 30px; box-shadow: 0 0 20px rgba(153, 153, 153, 0.7); width: calc(33.333% - 20px); border-radius: 0px; position: relative; color: white; }

.engagements-section .card h3 { color: #333; font-weight: 600 !important; font-size: 1.5rem; padding-top: 10px; }

.engagements-section .card p { color: #666; }

@media (max-width: 992px) { .engagements-section .card { width: calc(50% - 20px); } }

@media (max-width: 600px) { .engagements-section .card { width: 100%; } .engagements-section .engagements-title { margin-bottom: 40px; } }

/* =========================== SECTION : PARTENAIRES =========================== */
.partenaires-section { background-color: #fff; text-align: center; padding: 80px 8%; }

.partenaires-title { font-size: 2rem; font-weight: 600 !important; margin-bottom: 50px; color: #333; }

.partenaires-logos { display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap; }

.partenaires-logos img { max-width: 220px; height: auto; transition: transform 0.3s ease, opacity 0.3s ease; }

.partenaires-logos img:hover { transform: scale(1.05); opacity: 0.9; }

/* --- Responsive --- */
@media (max-width: 768px) { .partenaires-logos { flex-direction: column; gap: 40px; } .partenaires-logos img { max-width: 60%; } }

/* =========================== HEADER DE PAGE SERVICE (UNE PIQUE EN BAS) =========================== */
/* =========================== HEADER DE PAGE SERVICE (UNE PIQUE EN BAS) =========================== */
.service-header { --dip: 60px; /* profondeur de la pique */ position: relative; padding: 140px 10% 160px; color: #fff; text-align: center; /* Applique correctement l’image mise dans le HTML */ background-size: cover; background-position: center; background-repeat: no-repeat; /* UNE SEULE PIQUE : en bas uniquement */ clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--dip)), 50% 100%, 0 calc(100% - var(--dip))); }

/* Voile sombre au-dessus de l’image */
.service-header::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.18); /* opacity du voile */ z-index: 0; }

.service-header-content { position: relative; z-index: 1; }

.service-header-content h1 { font-size: 2.8rem; font-weight: 700; line-height: 1.2; margin: 0; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); }

/* Responsive */
@media (max-width: 768px) { .service-header { --dip: 40px; padding: 110px 6% 130px; } .service-header-content h1 { font-size: 2rem; } }

/* =========================== SECTION : TEXTE PAGE SECONDAIRES =========================== */
/* Styles généraux pour le bloc de services */
.services-details-block { display: flex; justify-content: center; gap: 40px; padding: 100px 20px; background-color: #fff; }

/* Style de chaque carte de service */
.details-card { flex: 1; max-width: 600px; padding: 40px 30px; text-align: center; /* Contraintes de bordure et pas de fond (vos styles) */ background-color: #ffffff; border: 2px solid #a2cf61; border-radius: 0px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); }

/* Styles des textes */
.details-card__title { font-size: 1.8rem; /* Légèrement augmenté pour mieux remplir l'espace */ font-weight: 600 !important; color: #a2cf61; margin-top: 0; margin-bottom: 20px; /* Plus d'espace sous le titre */ }

.details-card__description { font-size: 1.05rem; line-height: 1.6; color: #666; margin-bottom: 40px; }

.details-card__list-content { font-weight: 600; color: #666; font-size: 1.05rem; line-height: 2; }

/* =========================== RESPONSIVE SERVICES DETAILS =========================== */
@media (max-width: 900px) { .services-details-block { flex-direction: column; align-items: center; gap: 30px; padding: 60px 20px; } .details-card { max-width: 100%; width: 100%; padding: 25px; } .details-card__title { font-size: 1.6rem; margin-bottom: 15px; } .details-card__description { font-size: 1rem; margin-bottom: 20px; } .details-card__list-content { font-size: 1rem; line-height: 1.6; } }

/* =========================== SECTION : TEXTE PAGE CHAUFFAGE =========================== */
/* Styles généraux pour le bloc de services */
.chauffage-bloc { display: flex; justify-content: center; gap: 40px; padding: 100px 20px; background-color: #fff; }

/* Style de la carte chauffage */
.chauffage-card { flex: 1; max-width: 1200px; padding: 40px; text-align: center; background-color: #ffffff; border: 2px solid #65b7e7; border-radius: 0px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); }

/* Styles des textes */
.chauffage-card__title { font-size: 1.8rem; font-weight: 600 !important; color: #65b7e7; margin-top: 0; margin-bottom: 30px; }

.chauffage-card__description { font-size: 1.05rem; line-height: 1.6; color: #666; }

.chauffage-card__list-content { font-weight: 600; color: #666; font-size: 1.05rem; line-height: 1.8; }

/* =========================== RESPONSIVE  =========================== */
@media (max-width: 900px) { .chauffage-bloc { flex-direction: column; align-items: center; gap: 30px; padding: 60px 20px; } .chauffage-card { max-width: 100%; width: 100%; padding: 25px; } .chauffage-card__title { font-size: 1.6rem; margin-bottom: 15px; } .chauffage-card__description { font-size: 1rem; margin-bottom: 20px; } .chauffage-card__list-content { font-size: 1rem; line-height: 1.6; } }

/* =========================== SECTION : SALLE DE BAINS =========================== */
.sdb-bloc { display: flex; justify-content: center; padding: 100px 20px; background-color: #fff; }

.sdb-card { max-width: 1200px; padding: 40px; text-align: center; background-color: #ffffff; border: 2px solid #fda646; border-radius: 0px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); }

/* Titres */
.sdb-card__title { font-size: 1.8rem; font-weight: 600 !important; color: #fda646; margin-bottom: 30px; }

/* Description */
.sdb-card__description { font-size: 1.05rem; line-height: 1.6; color: #666; }

/* Liste en 2 colonnes */
.sdb-card__list-content ul { list-style: none; padding: 0; margin: 0 auto; column-count: 2; /* 2 colonnes */ column-gap: 40px; /* espace entre colonnes */ max-width: 900px; }

.sdb-card__list-content li { margin-bottom: 12px; font-size: 1.05rem; font-weight: 600; color: #666; }

/* =========================== RESPONSIVE =========================== */
@media (max-width: 900px) { .sdb-card__list-content ul { column-count: 1; /* 1 colonne sur mobile */ } .sdb-card { padding: 25px; } .sdb-card__title { font-size: 1.6rem; } .sdb-card__description, .sdb-card__list-content li { font-size: 1rem; } }

/* =========================== FAQ =========================== */
/* Section FAQ */
.faq-section { padding: 80px 10%; text-align: center; background-color: #fff; padding-top: 10px; }

.faq-title { font-size: 1.8rem; margin-bottom: 40px; font-weight: 600 !important; color: #333; }

/* Élément de FAQ */
.faq-item { margin-bottom: 20px; max-width: 1200px; margin-left: auto; margin-right: auto; }

.faq-item input[type="checkbox"] { display: none; }

/* Question */
.faq-question { display: flex; justify-content: center; align-items: center; position: relative; background: #f5f5f5; padding: 18px 25px; font-size: 1.2rem; font-weight: 600; cursor: pointer; border-radius: 4px; color: #fda646; }

/* Flèche à droite */
.faq-question .arrow { width: 12px; height: 12px; border-right: 2px solid #333; border-bottom: 2px solid #333; transform: rotate(45deg); transition: 0.3s; position: absolute; right: 25px; /* flèche collée à droite */ }

/* Rotation flèche quand ouvert */
.faq-item input:checked + .faq-question .arrow { transform: rotate(-135deg); }

/* Réponse */
.faq-answer { max-height: 0; overflow: hidden; text-align: center; color: #666; font-size: 1.05rem; padding: 0 20px; transition: max-height 0.4s ease, padding 0.3s ease; }

/* Réponse visible */
.faq-item input:checked ~ .faq-answer { max-height: 300px; padding: 20px 20px; }

/* =========================== DETAILS SDB =========================== */
.sdb-list-section { padding: 80px 10%; text-align: center; background-color: #fff; padding-top: 50px; }

.sdb-list-title { font-size: 1.8rem; font-weight: 600 !important; margin-bottom: 50px; color: #333; }

/* CONTENEUR À 2 COLONNES */
.sdb-list-container { display: flex; justify-content: center; gap: 60px; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }

/* COLONNES */
.sdb-column { display: flex; flex-direction: column; gap: 18px; width: 45%; min-width: 300px; }

/* ITEM */
.sdb-item { background: #f8f8f8; padding: 15px 25px; border-radius: 4px; font-size: 1.1rem; font-weight: 600; color: #a2cf61; text-align: left; display: flex; align-items: center; gap: 10px; transition: 0.2s; }

/* RESPONSIVE */
@media (max-width: 900px) { .sdb-list-container { flex-direction: column; align-items: center; gap: 35px; } .sdb-column { width: 100%; } }

/*# sourceMappingURL=custom.css.map */