Nouvelle famille wpjobmanager (WordPress + WP Job Manager) : flux job_feed (contenu complet en une requête) + JSON-LD des pages poste (date limite, lieu). Ouvre la plateforme carrieresante.gouv.qc.ca de Santé Québec (un site par établissement, en déploiement) : CHU de Québec (60), CHUM (25), CISSS Abitibi-Témiscamingue (141), Chaudière-Appalaches (112), Laval (149), Lanaudière (124), Laurentides (130) + CISSS de l'Outaouais via viensvivretespassions.ca (101). Fixture chum. + connecteur cssdd (CSS des Découvreurs, famille DigitalRecruiters existante).
15 changed files +20,001 −0
added
jobka/connectors/chu_quebec.py
+17 −0
@@ -0,0 +1,17 @@ | ||
| 1 | +# ============================================================================= | |
| 2 | +# Job·Ka — Groupe KA | |
| 3 | +# Auteur : Simon-Pierre Boucher | |
| 4 | +# Contact : contact@spboucher.ai | |
| 5 | +# Fichier : jobka/connectors/chu_quebec.py | |
| 6 | +# Rôle : Connecteur CHU de Québec — Université Laval (plateforme | |
| 7 | +# carrieresante.gouv.qc.ca, WordPress + WP Job Manager) | |
| 8 | +# Créé : 2026-08-19 Modifié : 2026-08-19 | |
| 9 | +# ============================================================================= | |
| 10 | +from .wpjobmanager import WPJobManagerConnector | |
| 11 | + | |
| 12 | + | |
| 13 | +class CHUQuebecConnector(WPJobManagerConnector): | |
| 14 | + source_id = "chu_quebec" | |
| 15 | + EMPLOYER = "CHU de Québec — Université Laval" | |
| 16 | + BASE = "https://chudequebec.carrieresante.gouv.qc.ca" | |
| 17 | + DEFAULT_CITY = "Québec" | |
added
jobka/connectors/chum.py
+17 −0
@@ -0,0 +1,17 @@ | ||
| 1 | +# ============================================================================= | |
| 2 | +# Job·Ka — Groupe KA | |
| 3 | +# Auteur : Simon-Pierre Boucher | |
| 4 | +# Contact : contact@spboucher.ai | |
| 5 | +# Fichier : jobka/connectors/chum.py | |
| 6 | +# Rôle : Connecteur CHUM (Centre hospitalier de l'Université de Montréal) | |
| 7 | +# — plateforme carrieresante.gouv.qc.ca (WP Job Manager) | |
| 8 | +# Créé : 2026-08-19 Modifié : 2026-08-19 | |
| 9 | +# ============================================================================= | |
| 10 | +from .wpjobmanager import WPJobManagerConnector | |
| 11 | + | |
| 12 | + | |
| 13 | +class CHUMConnector(WPJobManagerConnector): | |
| 14 | + source_id = "chum" | |
| 15 | + EMPLOYER = "CHUM" | |
| 16 | + BASE = "https://chum.carrieresante.gouv.qc.ca" | |
| 17 | + DEFAULT_CITY = "Montréal" | |
added
jobka/connectors/cisss_abitibi.py
+17 −0
@@ -0,0 +1,17 @@ | ||
| 1 | +# ============================================================================= | |
| 2 | +# Job·Ka — Groupe KA | |
| 3 | +# Auteur : Simon-Pierre Boucher | |
| 4 | +# Contact : contact@spboucher.ai | |
| 5 | +# Fichier : jobka/connectors/cisss_abitibi.py | |
| 6 | +# Rôle : Connecteur CISSS de l'Abitibi-Témiscamingue — plateforme | |
| 7 | +# carrieresante.gouv.qc.ca (WP Job Manager) | |
| 8 | +# Créé : 2026-08-19 Modifié : 2026-08-19 | |
| 9 | +# ============================================================================= | |
| 10 | +from .wpjobmanager import WPJobManagerConnector | |
| 11 | + | |
| 12 | + | |
| 13 | +class CISSSAbitibiConnector(WPJobManagerConnector): | |
| 14 | + source_id = "cisss_abitibi" | |
| 15 | + EMPLOYER = "CISSS de l'Abitibi-Témiscamingue" | |
| 16 | + BASE = "https://cisssat.carrieresante.gouv.qc.ca" | |
| 17 | + DEFAULT_CITY = "Rouyn-Noranda" | |
added
jobka/connectors/cisss_chaudiere_appalaches.py
+17 −0
@@ -0,0 +1,17 @@ | ||
| 1 | +# ============================================================================= | |
| 2 | +# Job·Ka — Groupe KA | |
| 3 | +# Auteur : Simon-Pierre Boucher | |
| 4 | +# Contact : contact@spboucher.ai | |
| 5 | +# Fichier : jobka/connectors/cisss_chaudiere_appalaches.py | |
| 6 | +# Rôle : Connecteur CISSS de Chaudière-Appalaches — plateforme | |
| 7 | +# carrieresante.gouv.qc.ca (WP Job Manager) | |
| 8 | +# Créé : 2026-08-19 Modifié : 2026-08-19 | |
| 9 | +# ============================================================================= | |
| 10 | +from .wpjobmanager import WPJobManagerConnector | |
| 11 | + | |
| 12 | + | |
| 13 | +class CISSSChaudiereAppalachesConnector(WPJobManagerConnector): | |
| 14 | + source_id = "cisss_chaudiere_appalaches" | |
| 15 | + EMPLOYER = "CISSS de Chaudière-Appalaches" | |
| 16 | + BASE = "https://cisssca.carrieresante.gouv.qc.ca" | |
| 17 | + DEFAULT_CITY = "Lévis" | |
added
jobka/connectors/cisss_lanaudiere.py
+17 −0
@@ -0,0 +1,17 @@ | ||
| 1 | +# ============================================================================= | |
| 2 | +# Job·Ka — Groupe KA | |
| 3 | +# Auteur : Simon-Pierre Boucher | |
| 4 | +# Contact : contact@spboucher.ai | |
| 5 | +# Fichier : jobka/connectors/cisss_lanaudiere.py | |
| 6 | +# Rôle : Connecteur CISSS de Lanaudière — plateforme carrieresante.gouv.qc.ca | |
| 7 | +# (WP Job Manager) | |
| 8 | +# Créé : 2026-08-19 Modifié : 2026-08-19 | |
| 9 | +# ============================================================================= | |
| 10 | +from .wpjobmanager import WPJobManagerConnector | |
| 11 | + | |
| 12 | + | |
| 13 | +class CISSSLanaudiereConnector(WPJobManagerConnector): | |
| 14 | + source_id = "cisss_lanaudiere" | |
| 15 | + EMPLOYER = "CISSS de Lanaudière" | |
| 16 | + BASE = "https://lanaudiere.carrieresante.gouv.qc.ca" | |
| 17 | + DEFAULT_CITY = "Joliette" | |
added
jobka/connectors/cisss_laurentides.py
+17 −0
@@ -0,0 +1,17 @@ | ||
| 1 | +# ============================================================================= | |
| 2 | +# Job·Ka — Groupe KA | |
| 3 | +# Auteur : Simon-Pierre Boucher | |
| 4 | +# Contact : contact@spboucher.ai | |
| 5 | +# Fichier : jobka/connectors/cisss_laurentides.py | |
| 6 | +# Rôle : Connecteur CISSS des Laurentides — plateforme | |
| 7 | +# carrieresante.gouv.qc.ca (WP Job Manager) | |
| 8 | +# Créé : 2026-08-19 Modifié : 2026-08-19 | |
| 9 | +# ============================================================================= | |
| 10 | +from .wpjobmanager import WPJobManagerConnector | |
| 11 | + | |
| 12 | + | |
| 13 | +class CISSSLaurentidesConnector(WPJobManagerConnector): | |
| 14 | + source_id = "cisss_laurentides" | |
| 15 | + EMPLOYER = "CISSS des Laurentides" | |
| 16 | + BASE = "https://laurentides.carrieresante.gouv.qc.ca" | |
| 17 | + DEFAULT_CITY = "Saint-Jérôme" | |
added
jobka/connectors/cisss_laval.py
+17 −0
@@ -0,0 +1,17 @@ | ||
| 1 | +# ============================================================================= | |
| 2 | +# Job·Ka — Groupe KA | |
| 3 | +# Auteur : Simon-Pierre Boucher | |
| 4 | +# Contact : contact@spboucher.ai | |
| 5 | +# Fichier : jobka/connectors/cisss_laval.py | |
| 6 | +# Rôle : Connecteur CISSS de Laval — plateforme carrieresante.gouv.qc.ca | |
| 7 | +# (WP Job Manager) | |
| 8 | +# Créé : 2026-08-19 Modifié : 2026-08-19 | |
| 9 | +# ============================================================================= | |
| 10 | +from .wpjobmanager import WPJobManagerConnector | |
| 11 | + | |
| 12 | + | |
| 13 | +class CISSSLavalConnector(WPJobManagerConnector): | |
| 14 | + source_id = "cisss_laval" | |
| 15 | + EMPLOYER = "CISSS de Laval" | |
| 16 | + BASE = "https://cissslaval.carrieresante.gouv.qc.ca" | |
| 17 | + DEFAULT_CITY = "Laval" | |
added
jobka/connectors/cisss_outaouais.py
+17 −0
@@ -0,0 +1,17 @@ | ||
| 1 | +# ============================================================================= | |
| 2 | +# Job·Ka — Groupe KA | |
| 3 | +# Auteur : Simon-Pierre Boucher | |
| 4 | +# Contact : contact@spboucher.ai | |
| 5 | +# Fichier : jobka/connectors/cisss_outaouais.py | |
| 6 | +# Rôle : Connecteur CISSS de l'Outaouais — site de recrutement | |
| 7 | +# viensvivretespassions.ca (WordPress + WP Job Manager) | |
| 8 | +# Créé : 2026-08-19 Modifié : 2026-08-19 | |
| 9 | +# ============================================================================= | |
| 10 | +from .wpjobmanager import WPJobManagerConnector | |
| 11 | + | |
| 12 | + | |
| 13 | +class CISSSOutaouaisConnector(WPJobManagerConnector): | |
| 14 | + source_id = "cisss_outaouais" | |
| 15 | + EMPLOYER = "CISSS de l'Outaouais" | |
| 16 | + BASE = "https://viensvivretespassions.ca" | |
| 17 | + DEFAULT_CITY = "Gatineau" | |
added
jobka/connectors/cssdd.py
+16 −0
@@ -0,0 +1,16 @@ | ||
| 1 | +# ============================================================================= | |
| 2 | +# Job·Ka — Groupe KA | |
| 3 | +# Auteur : Simon-Pierre Boucher | |
| 4 | +# Contact : contact@spboucher.ai | |
| 5 | +# Fichier : jobka/connectors/cssdd.py | |
| 6 | +# Rôle : Connecteur Centre de services scolaire des Découvreurs (Québec) | |
| 7 | +# — Cegid Digital Recruiters (emplois.cssdd.gouv.qc.ca) | |
| 8 | +# Créé : 2026-08-19 Modifié : 2026-08-19 | |
| 9 | +# ============================================================================= | |
| 10 | +from .digitalrecruiters import DigitalRecruitersConnector | |
| 11 | + | |
| 12 | + | |
| 13 | +class CSSDDConnector(DigitalRecruitersConnector): | |
| 14 | + source_id = "cssdd" | |
| 15 | + EMPLOYER = "Centre de services scolaire des Découvreurs" | |
| 16 | + BASE = "https://emplois.cssdd.gouv.qc.ca" | |
added
jobka/connectors/wpjobmanager.py
+125 −0
@@ -0,0 +1,125 @@ | ||
| 1 | +# ============================================================================= | |
| 2 | +# Job·Ka — Groupe KA | |
| 3 | +# Auteur : Simon-Pierre Boucher | |
| 4 | +# Contact : contact@spboucher.ai | |
| 5 | +# Fichier : jobka/connectors/wpjobmanager.py | |
| 6 | +# Rôle : Classe de plateforme WordPress + WP Job Manager — flux job_feed | |
| 7 | +# (contenu complet) + JSON-LD des pages poste (lieu, date limite). | |
| 8 | +# Utilisée par la plateforme « carrieresante.gouv.qc.ca » du réseau | |
| 9 | +# de la santé (un site WordPress par établissement Santé Québec). | |
| 10 | +# Créé : 2026-08-19 Modifié : 2026-08-19 | |
| 11 | +# ============================================================================= | |
| 12 | +"""Plateforme WordPress / WP Job Manager. | |
| 13 | + | |
| 14 | +- liste : GET <BASE>/?feed=job_feed&posts_per_page=500 | |
| 15 | + -> RSS : <item> title / link (/poste/<slug>/) / pubDate / | |
| 16 | + guid (?post_type=job_listing&p=<id>) / content:encoded (HTML | |
| 17 | + complet de l'offre) — tout en une requête. | |
| 18 | +- détail : la page /poste/<slug>/ embarque un JSON-LD schema.org/JobPosting | |
| 19 | + (validThrough, jobLocation, employmentType) — cache BD + budget, | |
| 20 | + uniquement pour compléter lieu et date limite. | |
| 21 | +""" | |
| 22 | +from __future__ import annotations | |
| 23 | + | |
| 24 | +import html as _html | |
| 25 | +import os | |
| 26 | +import re | |
| 27 | + | |
| 28 | +from ..schema import JobPosting, clean_html | |
| 29 | +from . import _jsonld | |
| 30 | +from .base import BaseConnector | |
| 31 | + | |
| 32 | +MAX_DETAILS = int(os.environ.get("JOBKA_WPJM_DETAIL_LIMIT", "60")) | |
| 33 | + | |
| 34 | +_ITEM_RE = re.compile(r"<item>(.*?)</item>", re.S | re.I) | |
| 35 | +_TAG_RE = {t: re.compile(rf"<{t}>(.*?)</{t}>", re.S | re.I) | |
| 36 | + for t in ("title", "link", "pubDate", "guid")} | |
| 37 | +_CONTENT_RE = re.compile( | |
| 38 | + r"<content:encoded><!\[CDATA\[(.*?)\]\]></content:encoded>", re.S | re.I) | |
| 39 | +_PID_RE = re.compile(r"[?&](?:amp;)?p=(\d+)") | |
| 40 | + | |
| 41 | + | |
| 42 | +class WPJobManagerConnector(BaseConnector): | |
| 43 | + """Base WP Job Manager — sous-classes : définir source_id, EMPLOYER, | |
| 44 | + BASE (racine du site WordPress) et DEFAULT_CITY au besoin.""" | |
| 45 | + | |
| 46 | + ats = "wpjobmanager" | |
| 47 | + request_delay = 1.0 | |
| 48 | + | |
| 49 | + EMPLOYER = "" | |
| 50 | + BASE = "" | |
| 51 | + DEFAULT_CITY = "" | |
| 52 | + PER_PAGE = 500 | |
| 53 | + | |
| 54 | + def _cdata(self, s: str) -> str: | |
| 55 | + s = (s or "").strip() | |
| 56 | + if s.startswith("<![CDATA["): | |
| 57 | + s = s[9:] | |
| 58 | + if s.endswith("]]>"): | |
| 59 | + s = s[:-3] | |
| 60 | + return _html.unescape(s.strip()) | |
| 61 | + | |
| 62 | + def _fetch_detail(self, url: str) -> dict: | |
| 63 | + html = self.get(url).text | |
| 64 | + node = _jsonld.extract_jobposting(html) | |
| 65 | + return _jsonld.jobposting_fields(node) if node else {} | |
| 66 | + | |
| 67 | + def fetch(self) -> list[JobPosting]: | |
| 68 | + xml = self.get(f"{self.BASE}/", | |
| 69 | + params={"feed": "job_feed", | |
| 70 | + "posts_per_page": str(self.PER_PAGE)}).text | |
| 71 | + out: list[JobPosting] = [] | |
| 72 | + details_used = 0 | |
| 73 | + seen: set[str] = set() | |
| 74 | + for raw in _ITEM_RE.findall(xml): | |
| 75 | + def g(tag: str, raw=raw) -> str: | |
| 76 | + m = _TAG_RE[tag].search(raw) | |
| 77 | + return self._cdata(m.group(1)) if m else "" | |
| 78 | + link, guid = g("link"), g("guid") | |
| 79 | + m_id = _PID_RE.search(_html.unescape(guid)) | |
| 80 | + eid = m_id.group(1) if m_id else "" | |
| 81 | + title = g("title") | |
| 82 | + if not link or not title: | |
| 83 | + continue | |
| 84 | + if not eid: | |
| 85 | + m_slug = re.search(r"/poste/([^/]+)/?$", link) | |
| 86 | + eid = m_slug.group(1) if m_slug else "" | |
| 87 | + if not eid or eid in seen: | |
| 88 | + continue | |
| 89 | + seen.add(eid) | |
| 90 | + m_c = _CONTENT_RE.search(raw) | |
| 91 | + job = JobPosting( | |
| 92 | + source=self.source_id, external_id=eid, url=link, | |
| 93 | + employer=self.EMPLOYER, title=title, | |
| 94 | + description=clean_html(_html.unescape(m_c.group(1))) | |
| 95 | + if m_c else "", | |
| 96 | + city=self.DEFAULT_CITY, | |
| 97 | + date_posted=g("pubDate") or None, | |
| 98 | + ats=self.ats, | |
| 99 | + ) | |
| 100 | + key = f"{title}|{job.date_posted or ''}" | |
| 101 | + if details_used < MAX_DETAILS: | |
| 102 | + fresh = [False] | |
| 103 | + | |
| 104 | + def _fn(u=link, fresh=fresh): | |
| 105 | + fresh[0] = True | |
| 106 | + return self._fetch_detail(u) | |
| 107 | + | |
| 108 | + fields = self.detail(eid, key, _fn) | |
| 109 | + if fresh[0]: | |
| 110 | + details_used += 1 | |
| 111 | + else: | |
| 112 | + fields = self.stale_detail(eid) | |
| 113 | + if fields: | |
| 114 | + if fields.get("date_deadline"): | |
| 115 | + job.date_deadline = fields["date_deadline"] | |
| 116 | + if fields.get("city"): | |
| 117 | + job.city = fields["city"] | |
| 118 | + if fields.get("postal_code"): | |
| 119 | + job.postal_code = fields["postal_code"] | |
| 120 | + if fields.get("employment_label"): | |
| 121 | + job.details["employment_label"] = fields["employment_label"] | |
| 122 | + if fields.get("lat") is not None: | |
| 123 | + job.lat, job.lng = fields["lat"], fields["lng"] | |
| 124 | + out.append(job) | |
| 125 | + return out | |
added
tests/fixtures/chum/03ada5dc2047d09bb50f.html
+4162 −0
@@ -0,0 +1,4162 @@ | ||
| 1 | +<!doctype html> | |
| 2 | +<html lang="fr-FR"> | |
| 3 | + | |
| 4 | +<head> | |
| 5 | + <meta charset="UTF-8"> | |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| 7 | + <meta http-equiv="X-UA-Compatible" content="IE=edge, IE=11, IE=10"> | |
| 8 | + <link rel="pingback" href="https://chum.carrieresante.gouv.qc.ca/xmlrpc.php" /> | |
| 9 | + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> | |
| 10 | +<link rel="alternate" hreflang="fr" href="https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2/" /> | |
| 11 | +<link rel="alternate" hreflang="x-default" href="https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2/" /> | |
| 12 | +<script id="cookieyes" type="text/javascript" src="https://cdn-cookieyes.com/client_data/a02c54dd1258cab5a44db8ca534bda4c/script.js"></script> | |
| 13 | + <!-- This site is optimized with the Yoast SEO plugin v27.9 - https://yoast.com/product/yoast-seo-wordpress/ --> | |
| 14 | + <title>Technologue en imagerie médicale du domaine de la médecine nucléaire - CHUM</title> | |
| 15 | + <link rel="canonical" href="https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2/" /> | |
| 16 | + <meta property="og:locale" content="fr_FR" /> | |
| 17 | + <meta property="og:type" content="article" /> | |
| 18 | + <meta property="og:title" content="Technologue en imagerie médicale du domaine de la médecine nucléaire - CHUM" /> | |
| 19 | + <meta property="og:description" content="Mandat Faites partie d’une équipe qui transforme des images en réponses pour nos patients! Le CHUM est un hôpital universitaire à la..." /> | |
| 20 | + <meta property="og:url" content="https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2/" /> | |
| 21 | + <meta property="og:site_name" content="CHUM" /> | |
| 22 | + <meta property="article:modified_time" content="2026-06-23T13:40:13+00:00" /> | |
| 23 | + <meta name="twitter:card" content="summary_large_image" /> | |
| 24 | + <meta name="twitter:label1" content="Durée de lecture estimée" /> | |
| 25 | + <meta name="twitter:data1" content="3 minutes" /> | |
| 26 | + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/technologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2\/","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/technologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2\/","name":"Technologue en imagerie médicale du domaine de la médecine nucléaire - CHUM","isPartOf":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#website"},"datePublished":"2026-06-03T04:00:00+00:00","dateModified":"2026-06-23T13:40:13+00:00","breadcrumb":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/technologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/technologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/technologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/chum.carrieresante.gouv.qc.ca\/"},{"@type":"ListItem","position":2,"name":"Technologue en imagerie médicale du domaine de la médecine nucléaire"}]},{"@type":"WebSite","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#website","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/","name":"Makila.ai","description":"Carrière en santé","publisher":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/chum.carrieresante.gouv.qc.ca\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#organization","name":"Services Makila inc.","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#\/schema\/logo\/image\/","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/wp-content\/uploads\/2020\/10\/Logo-Makila-Dark-150.png","contentUrl":"https:\/\/chum.carrieresante.gouv.qc.ca\/wp-content\/uploads\/2020\/10\/Logo-Makila-Dark-150.png","width":150,"height":43,"caption":"Services Makila inc."},"image":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/makila-ai\/"]}]}</script> | |
| 27 | + <!-- / Yoast SEO plugin. --> | |
| 28 | + | |
| 29 | + | |
| 30 | +<link rel='dns-prefetch' href='//static.addtoany.com' /> | |
| 31 | +<link rel='dns-prefetch' href='//code.jquery.com' /> | |
| 32 | +<link rel='dns-prefetch' href='//use.fontawesome.com' /> | |
| 33 | +<link rel='dns-prefetch' href='//fonts.googleapis.com' /> | |
| 34 | +<link href='https://fonts.gstatic.com' crossorigin rel='preconnect' /> | |
| 35 | +<link rel="alternate" type="application/rss+xml" title="CHUM » Flux" href="https://chum.carrieresante.gouv.qc.ca/feed/" /> | |
| 36 | +<link rel="alternate" type="application/rss+xml" title="CHUM » Flux des commentaires" href="https://chum.carrieresante.gouv.qc.ca/comments/feed/" /> | |
| 37 | +<link rel="alternate" type="application/rss+xml" title="CHUM » Technologue en imagerie médicale du domaine de la médecine nucléaire Flux des commentaires" href="https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2/feed/" /> | |
| 38 | +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://chum.carrieresante.gouv.qc.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2%2F" /> | |
| 39 | +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://chum.carrieresante.gouv.qc.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2%2F&format=xml" /> | |
| 40 | +<style id="wp-img-auto-sizes-contain-inline-css"> | |
| 41 | +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} | |
| 42 | +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */ | |
| 43 | +</style> | |
| 44 | +<link rel='stylesheet' id='reusablec-block-css-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/reusable-content-blocks/includes/css/reusablec-block.css?ver=7.0.4' media='all' /> | |
| 45 | +<style id="wp-emoji-styles-inline-css"> | |
| 46 | + | |
| 47 | + img.wp-smiley, img.emoji { | |
| 48 | + display: inline !important; | |
| 49 | + border: none !important; | |
| 50 | + box-shadow: none !important; | |
| 51 | + height: 1em !important; | |
| 52 | + width: 1em !important; | |
| 53 | + margin: 0 0.07em !important; | |
| 54 | + vertical-align: -0.1em !important; | |
| 55 | + background: none !important; | |
| 56 | + padding: 0 !important; | |
| 57 | + } | |
| 58 | +/*# sourceURL=wp-emoji-styles-inline-css */ | |
| 59 | +</style> | |
| 60 | +<style id="wp-block-library-inline-css"> | |
| 61 | +:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} | |
| 62 | +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */ | |
| 63 | +</style> | |
| 64 | +<style id="classic-theme-styles-inline-css"> | |
| 65 | +/*! This file is auto-generated */ | |
| 66 | +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} | |
| 67 | +/*# sourceURL=/wp-includes/css/classic-themes.min.css */ | |
| 68 | +</style> | |
| 69 | +<style id="wp-block-styles-placeholder-inline-css"> | |
| 70 | +:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the block styles printed at wp_footer." } | |
| 71 | +/*# sourceURL=wp-block-styles-placeholder-inline-css */ | |
| 72 | +</style> | |
| 73 | +<style id="font-awesome-svg-styles-default-inline-css"> | |
| 74 | +.svg-inline--fa { | |
| 75 | + display: inline-block; | |
| 76 | + height: 1em; | |
| 77 | + overflow: visible; | |
| 78 | + vertical-align: -.125em; | |
| 79 | +} | |
| 80 | +/*# sourceURL=font-awesome-svg-styles-default-inline-css */ | |
| 81 | +</style> | |
| 82 | +<link rel='stylesheet' id='font-awesome-svg-styles-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/font-awesome/v6.4.2/css/svg-with-js.css' media='all' /> | |
| 83 | +<style id="font-awesome-svg-styles-inline-css"> | |
| 84 | + .wp-block-font-awesome-icon svg::before, | |
| 85 | + .wp-rich-text-font-awesome-icon svg::before {content: unset;} | |
| 86 | +/*# sourceURL=font-awesome-svg-styles-inline-css */ | |
| 87 | +</style> | |
| 88 | +<style id="wp-global-styles-placeholder-inline-css"> | |
| 89 | +:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the global-styles printed at wp_footer." } | |
| 90 | +/*# sourceURL=wp-global-styles-placeholder-inline-css */ | |
| 91 | +</style> | |
| 92 | +<link rel='stylesheet' id='contact-form-7-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.6' media='all' /> | |
| 93 | +<link rel='stylesheet' id='select2-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager/assets/lib/select2/select2.min.css?ver=4.0.10' media='all' /> | |
| 94 | +<link rel='stylesheet' id='wp-job-manager-frontend-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager/assets/dist/css/frontend.css?ver=dfd3b8d2ce68f47df57d' media='all' /> | |
| 95 | +<link rel='stylesheet' id='wpml-legacy-horizontal-list-0-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/sitepress-multilingual-cms/templates/language-switchers/legacy-list-horizontal/style.min.css?ver=1' media='all' /> | |
| 96 | +<link rel='stylesheet' id='wpml-menu-item-0-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/sitepress-multilingual-cms/templates/language-switchers/menu-item/style.min.css?ver=1' media='all' /> | |
| 97 | +<link rel='stylesheet' id='job-alerts-frontend-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager-alerts/assets/dist/css/frontend.css?ver=3.2.0' media='all' /> | |
| 98 | +<link rel='stylesheet' id='job-alerts-frontend-default-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager-alerts/assets/dist/css/frontend.default.css?ver=3.2.0' media='all' /> | |
| 99 | +<link rel='stylesheet' id='jquery-ui-css' href='//code.jquery.com/ui/1.13.3/themes/smoothness/jquery-ui.min.css?ver=1.13.3' media='all' /> | |
| 100 | +<link rel='stylesheet' id='jm-application-deadline-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager-application-deadline/assets/dist/css/frontend.css?ver=1.3.0' media='' /> | |
| 101 | +<link rel='stylesheet' id='stack-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style.css?ver=7.0.4' media='all' /> | |
| 102 | +<link rel='stylesheet' id='stack-child-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack-child/style.css?ver=10.5.21' media='all' /> | |
| 103 | +<link rel='stylesheet' id='font-awesome-official-css' href='https://use.fontawesome.com/releases/v6.4.2/css/all.css' media='all' integrity="sha384-blOohCVdhjmtROpu8+CfTnUWham9nkX7P7OZQMst+RUnhtoY/9qemFAkIKOYxDI3" crossorigin="anonymous" /> | |
| 104 | +<link rel='stylesheet' id='addtoany-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/add-to-any/addtoany.min.css?ver=1.16' media='all' /> | |
| 105 | +<link rel='stylesheet' id='cf7cf-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/cf7-conditional-fields/style.css?ver=2.7.8' media='all' /> | |
| 106 | +<link rel='stylesheet' id='ebor-google-font-css' href='//fonts.googleapis.com/css?family=Lato%3A200%2C300%2C400%2C400i%2C500%2C600%2C700%7CMerriweather%3A300%2C300i%7CMaterial+Icons&ver=10.5.21' media='all' /> | |
| 107 | +<link rel='stylesheet' id='bootstrap-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/bootstrap.css?ver=10.5.21' media='all' /> | |
| 108 | +<link rel='stylesheet' id='ebor-icons-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/icons.css?ver=10.5.21' media='all' /> | |
| 109 | +<link rel='stylesheet' id='ebor-plugins-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/plugins.css?ver=10.5.21' media='all' /> | |
| 110 | +<link rel='stylesheet' id='ebor-theme-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/theme.css?ver=10.5.21' media='all' /> | |
| 111 | +<link rel='stylesheet' id='ebor-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack-child/style.css?ver=10.5.21' media='all' /> | |
| 112 | +<style id="ebor-style-inline-css"> | |
| 113 | + | |
| 114 | + .btn--primary .btn__text, .btn--primary:visited .btn__text { | |
| 115 | + color: #000000; | |
| 116 | + } | |
| 117 | + input[type].btn--primary, | |
| 118 | + .pos-fixed.bar--transparent.bg--primary, | |
| 119 | + .ebor-cart-count, .woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover { | |
| 120 | + background: #16375e; | |
| 121 | + } | |
| 122 | + .pos-fixed.bar--transparent.bg--secondary { | |
| 123 | + background: #FAFAFA; | |
| 124 | + } | |
| 125 | + .pos-fixed.bar--transparent.bg--dark { | |
| 126 | + background: #252525; | |
| 127 | + } | |
| 128 | + .pos-fixed.bar--transparent.bg--primary-1 { | |
| 129 | + background: #34acaa; | |
| 130 | + } | |
| 131 | + .bg--white h1, .bg--white h2, .bg--white h3, .bg--white h4, .bg--white h5, .bg--white h6, .bg--white i, .mobile-header .cart-link { | |
| 132 | + color: #252525; | |
| 133 | + } | |
| 134 | + @media all and (max-width:767px) { | |
| 135 | + .bar.bg--dark.bar--mobile-sticky[data-scroll-class*="fixed"].pos-fixed, | |
| 136 | + .bar.bg--dark.bar--mobile-sticky[data-scroll-class*="fixed"]+.bar.pos-fixed { | |
| 137 | + background: #252525; | |
| 138 | + } | |
| 139 | + .bar.bg--secondary.bar--mobile-sticky[data-scroll-class*="fixed"].pos-fixed, | |
| 140 | + .bar.bg--secondary.bar--mobile-sticky[data-scroll-class*="fixed"]+.bar.pos-fixed { | |
| 141 | + background: #FAFAFA; | |
| 142 | + } | |
| 143 | + } | |
| 144 | + .thumbnails-slider .thumbnail-trigger.active img { | |
| 145 | + border: 1px solid #16375e; | |
| 146 | + } | |
| 147 | + .menu-horizontal > li > a, .menu-horizontal > li > span, .menu-horizontal > li > .modal-instance > .modal-trigger { | |
| 148 | + font-size: 1em; | |
| 149 | + } | |
| 150 | + .woocommerce #respond input#submit.alt, | |
| 151 | + .woocommerce a.button.alt, | |
| 152 | + .woocommerce button.button.alt, | |
| 153 | + .woocommerce input.button.alt, | |
| 154 | + .woocommerce #respond input#submit, | |
| 155 | + .woocommerce a.button, | |
| 156 | + .woocommerce button.button, | |
| 157 | + .woocommerce input.button { | |
| 158 | + background: #16375e; | |
| 159 | + color: #fff; | |
| 160 | + transition: 0.1s linear; | |
| 161 | + } | |
| 162 | + .woocommerce #respond input#submit.alt:hover, | |
| 163 | + .woocommerce a.button.alt:hover, | |
| 164 | + .woocommerce button.button.alt:hover, | |
| 165 | + .woocommerce input.button.alt:hover, | |
| 166 | + .woocommerce #respond input#submit:hover, | |
| 167 | + .woocommerce a.button:hover, | |
| 168 | + .woocommerce button.button:hover, | |
| 169 | + .woocommerce input.button:hover { | |
| 170 | + color: #fff; | |
| 171 | + opacity: 0.9; | |
| 172 | + background: #16375e; | |
| 173 | + transform: translate3d(0, -2px, 0); | |
| 174 | + -webkit-transform: translate3d(0, -2px, 0); | |
| 175 | + } | |
| 176 | + | |
| 177 | + .menu-horizontal > li:not(:hover) > a, .menu-horizontal > li:not(:hover) > span, | |
| 178 | + .menu-horizontal > li:not(:hover) > .modal-instance > .modal-trigger { | |
| 179 | + opacity: 0.85 | |
| 180 | + } | |
| 181 | + .menu-vertical li:not(:hover):not(.dropdown--active) { | |
| 182 | + opacity: .75; | |
| 183 | + } | |
| 184 | + | |
| 185 | +/*# sourceURL=ebor-style-inline-css */ | |
| 186 | +</style> | |
| 187 | +<link rel='stylesheet' id='ebor-iconsmind-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/iconsmind.css?ver=10.5.21' media='all' /> | |
| 188 | +<link rel='stylesheet' id='font-awesome-official-v4shim-css' href='https://use.fontawesome.com/releases/v6.4.2/css/v4-shims.css' media='all' integrity="sha384-IqMDcR2qh8kGcGdRrxwop5R2GiUY5h8aDR/LhYxPYiXh3sAAGGDkFvFqWgFvTsTd" crossorigin="anonymous" /> | |
| 189 | +<script id="addtoany-core-js-before"> | |
| 190 | +window.a2a_config=window.a2a_config||{};a2a_config.callbacks=[];a2a_config.overlays=[];a2a_config.templates={};a2a_localize = { | |
| 191 | + Share: "Partager", | |
| 192 | + Save: "Enregistrer", | |
| 193 | + Subscribe: "S'abonner", | |
| 194 | + Email: "E-mail", | |
| 195 | + Bookmark: "Marque-page", | |
| 196 | + ShowAll: "Montrer tout", | |
| 197 | + ShowLess: "Montrer moins", | |
| 198 | + FindServices: "Trouver des service(s)", | |
| 199 | + FindAnyServiceToAddTo: "Trouver instantanément des services à ajouter à", | |
| 200 | + PoweredBy: "Propulsé par", | |
| 201 | + ShareViaEmail: "Partager par e-mail", | |
| 202 | + SubscribeViaEmail: "S’abonner par e-mail", | |
| 203 | + BookmarkInYourBrowser: "Ajouter un signet dans votre navigateur", | |
| 204 | + BookmarkInstructions: "Appuyez sur Ctrl+D ou \u2318+D pour mettre cette page en signet", | |
| 205 | + AddToYourFavorites: "Ajouter à vos favoris", | |
| 206 | + SendFromWebOrProgram: "Envoyer depuis n’importe quelle adresse e-mail ou logiciel e-mail", | |
| 207 | + EmailProgram: "Programme d’e-mail", | |
| 208 | + More: "Plus…", | |
| 209 | + ThanksForSharing: "Merci de partager !", | |
| 210 | + ThanksForFollowing: "Merci de nous suivre !" | |
| 211 | +}; | |
| 212 | + | |
| 213 | + | |
| 214 | +//# sourceURL=addtoany-core-js-before | |
| 215 | +</script> | |
| 216 | +<script id="addtoany-core-js" defer src="https://static.addtoany.com/menu/page.js"></script> | |
| 217 | +<script id="jquery-core-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script> | |
| 218 | +<script id="jquery-migrate-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script> | |
| 219 | +<script id="addtoany-jquery-js" defer src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/add-to-any/addtoany.min.js?ver=1.1"></script> | |
| 220 | +<script id="wpml-browser-redirect-js-extra"> | |
| 221 | +var wpml_browser_redirect_params = {"pageLanguage":"fr","languageUrls":{"fr_fr":"https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2/","fr":"https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2/"},"cookie":{"name":"_icl_visitor_lang_js","domain":"chum.carrieresante.gouv.qc.ca","path":"/","expiration":24}}; | |
| 222 | +//# sourceURL=wpml-browser-redirect-js-extra | |
| 223 | +</script> | |
| 224 | +<script id="wpml-browser-redirect-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/sitepress-multilingual-cms/dist/js/browser-redirect/app.js?ver=495000"></script> | |
| 225 | +<script></script><link rel="https://api.w.org/" href="https://chum.carrieresante.gouv.qc.ca/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://chum.carrieresante.gouv.qc.ca/wp-json/wp/v2/job-listings/52673" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://chum.carrieresante.gouv.qc.ca/xmlrpc.php?rsd" /> | |
| 226 | +<meta name="generator" content="WordPress 7.0.4" /> | |
| 227 | +<link rel='shortlink' href='https://chum.carrieresante.gouv.qc.ca/?p=52673' /> | |
| 228 | +<meta name="generator" content="WPML ver:4.9.5 stt:1,4;" /> | |
| 229 | +<meta name="generator" content="Elementor 4.1.4; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"> | |
| 230 | + <style> | |
| 231 | + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 232 | + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 233 | + background-image: none !important; | |
| 234 | + } | |
| 235 | + @media screen and (max-height: 1024px) { | |
| 236 | + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 237 | + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 238 | + background-image: none !important; | |
| 239 | + } | |
| 240 | + } | |
| 241 | + @media screen and (max-height: 640px) { | |
| 242 | + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 243 | + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 244 | + background-image: none !important; | |
| 245 | + } | |
| 246 | + } | |
| 247 | + </style> | |
| 248 | + <meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/> | |
| 249 | +<script type="text/javascript" id="sns_global_scripts_in_head">// JavaScript to handle the "Select All" for Statut De L'Emploi | |
| 250 | +jQuery(document).ready(function($) { | |
| 251 | + $('#select-all-StatutDeLEmploi').click(function(e) { | |
| 252 | + e.preventDefault(); | |
| 253 | + var checkboxGroup = $(this).closest('form').find('[name="StatutDeLEmploi[]"]'); | |
| 254 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 255 | + checkboxGroup.prop('checked', isChecked); | |
| 256 | + if (isChecked) { | |
| 257 | + $(this).text('Déselectionner tout'); | |
| 258 | + } else { | |
| 259 | + $(this).text('Sélectionner tout'); | |
| 260 | + } | |
| 261 | + }); | |
| 262 | + | |
| 263 | + $('[name="StatutDeLEmploi[]"]').change(function() { | |
| 264 | + var allChecked = $('[name="StatutDeLEmploi[]"]:checked').length === $('[name="StatutDeLEmploi[]"]').length; | |
| 265 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 266 | + $('#select-all-StatutDeLEmploi').text(linkText); | |
| 267 | + }); | |
| 268 | +}); | |
| 269 | +// JavaScript to handle the "Select All" for Territoires | |
| 270 | +jQuery(document).ready(function($) { | |
| 271 | + $('#select-all-Territoires').click(function(e) { | |
| 272 | + e.preventDefault(); | |
| 273 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires[]"]'); | |
| 274 | + | |
| 275 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 276 | + checkboxGroup.prop('checked', isChecked); | |
| 277 | + | |
| 278 | + if (isChecked) { | |
| 279 | + $(this).text('Déselectionner tout'); | |
| 280 | + } else { | |
| 281 | + $(this).text('Sélectionner tout'); | |
| 282 | + } | |
| 283 | + }); | |
| 284 | + | |
| 285 | + | |
| 286 | + $('[name="Territoires[]"]').change(function() { | |
| 287 | + var allChecked = $('[name="Territoires[]"]:checked').length === $('[name="Territoires[]"]').length; | |
| 288 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 289 | + $('#select-all-Territoires').text(linkText); | |
| 290 | + }); | |
| 291 | +}); | |
| 292 | +// JavaScript to handle the "Select All" for Territoires2 | |
| 293 | +jQuery(document).ready(function($) { | |
| 294 | + $('#select-all-Territoires2').click(function(e) { | |
| 295 | + e.preventDefault(); // Prevent the default link behavior | |
| 296 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires2[]"]'); | |
| 297 | + | |
| 298 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 299 | + checkboxGroup.prop('checked', isChecked); | |
| 300 | + | |
| 301 | + if (isChecked) { | |
| 302 | + $(this).text('Déselectionner tout'); | |
| 303 | + } else { | |
| 304 | + $(this).text('Sélectionner tout'); | |
| 305 | + } | |
| 306 | + }); | |
| 307 | + | |
| 308 | + $('[name="Territoires2[]"]').change(function() { | |
| 309 | + var allChecked = $('[name="Territoires2[]"]:checked').length === $('[name="Territoires2[]"]').length; | |
| 310 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 311 | + $('#select-all-Territoires2').text(linkText); | |
| 312 | + }); | |
| 313 | +}); | |
| 314 | + | |
| 315 | +// JavaScript to handle the "Select All" for Territoires3 | |
| 316 | +jQuery(document).ready(function($) { | |
| 317 | + $('#select-all-Territoires3').click(function(e) { | |
| 318 | + e.preventDefault(); // Prevent the default link behavior | |
| 319 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires3[]"]'); | |
| 320 | + | |
| 321 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 322 | + checkboxGroup.prop('checked', isChecked); | |
| 323 | + | |
| 324 | + if (isChecked) { | |
| 325 | + $(this).text('Déselectionner tout'); | |
| 326 | + } else { | |
| 327 | + $(this).text('Sélectionner tout'); | |
| 328 | + } | |
| 329 | + }); | |
| 330 | + | |
| 331 | + $('[name="Territoires3[]"]').change(function() { | |
| 332 | + var allChecked = $('[name="Territoires3[]"]:checked').length === $('[name="Territoires3[]"]').length; | |
| 333 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 334 | + $('#select-all-Territoires3').text(linkText); | |
| 335 | + }); | |
| 336 | +}); | |
| 337 | + | |
| 338 | +// JavaScript to handle the "Select All" for Territoires4 | |
| 339 | +jQuery(document).ready(function($) { | |
| 340 | + $('#select-all-Territoires4').click(function(e) { | |
| 341 | + e.preventDefault(); // Prevent the default link behavior | |
| 342 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires4[]"]'); | |
| 343 | + | |
| 344 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 345 | + checkboxGroup.prop('checked', isChecked); | |
| 346 | + | |
| 347 | + if (isChecked) { | |
| 348 | + $(this).text('Déselectionner tout'); | |
| 349 | + } else { | |
| 350 | + $(this).text('Sélectionner tout'); | |
| 351 | + } | |
| 352 | + }); | |
| 353 | + | |
| 354 | + $('[name="Territoires4[]"]').change(function() { | |
| 355 | + var allChecked = $('[name="Territoires4[]"]:checked').length === $('[name="Territoires4[]"]').length; | |
| 356 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 357 | + $('#select-all-Territoires4').text(linkText); | |
| 358 | + }); | |
| 359 | +}); | |
| 360 | + | |
| 361 | +// JavaScript to set the checkboxes 'StatutDeLEmploi' and 'Categories' to be required. | |
| 362 | +document.addEventListener('wpcf7submit', function(event) { | |
| 363 | + if ('StatutDeLEmploi' in event.detail.inputs) { | |
| 364 | + if (event.detail.inputs['StatutDeLEmploi'].checked === false) { | |
| 365 | + alert('Pour vous abonner, vous devez sélectionner au moins un élément de la section \"statut de l\'emploi\"'); | |
| 366 | + event.preventDefault(); | |
| 367 | + } | |
| 368 | + } | |
| 369 | +}, false); | |
| 370 | +//Renommer Rechercher des offres d’emploi par Filtrer les résultats | |
| 371 | +jQuery(document).ready(function($) { | |
| 372 | + var submitButton = $('.search_submit input[type="submit"]'); | |
| 373 | + submitButton.attr('value', 'Filtrer les résultats'); | |
| 374 | +}); | |
| 375 | + | |
| 376 | +// Get all text nodes in the document | |
| 377 | +function getAllTextNodes(element) { | |
| 378 | + const textNodes = []; | |
| 379 | + if (element.nodeType === Node.TEXT_NODE) { | |
| 380 | + textNodes.push(element); | |
| 381 | + } else { | |
| 382 | + const children = element.childNodes; | |
| 383 | + for (let i = 0; i < children.length; i++) { | |
| 384 | + textNodes.push(...getAllTextNodes(children[i])); | |
| 385 | + } | |
| 386 | + } | |
| 387 | + return textNodes; | |
| 388 | +} | |
| 389 | + | |
| 390 | +//remove overlay from hero slider | |
| 391 | +document.addEventListener('DOMContentLoaded', function () { | |
| 392 | + var elements = document.querySelectorAll('.imagebg[data-overlay="4"]'); | |
| 393 | + elements.forEach(function (element) { | |
| 394 | + element.removeAttribute('data-overlay'); | |
| 395 | + }); | |
| 396 | +}); | |
| 397 | + | |
| 398 | +window.addEventListener('DOMContentLoaded', function () { | |
| 399 | +document.querySelector('.scroll-right').onclick = () => { | |
| 400 | + document.querySelector('.job-listing-wrapper').scrollBy({ | |
| 401 | + left: 300, | |
| 402 | + behavior: 'smooth' | |
| 403 | + }); | |
| 404 | +}; | |
| 405 | + | |
| 406 | +document.querySelector('.scroll-left').onclick = () => { | |
| 407 | + document.querySelector('.job-listing-wrapper').scrollBy({ | |
| 408 | + left: -300, | |
| 409 | + behavior: 'smooth' | |
| 410 | + }); | |
| 411 | +}; | |
| 412 | + | |
| 413 | +}); | |
| 414 | + | |
| 415 | +document.addEventListener('DOMContentLoaded', function() { | |
| 416 | + document.querySelectorAll('strong').forEach(function(el) { | |
| 417 | + if (el.textContent.trim() === 'Partagez :') { | |
| 418 | + el.classList.add('is-partagez'); | |
| 419 | + } | |
| 420 | + }); | |
| 421 | +}); | |
| 422 | +</script><link rel="icon" href="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-32x32.png" sizes="32x32" /> | |
| 423 | +<link rel="icon" href="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-192x192.png" sizes="192x192" /> | |
| 424 | +<link rel="apple-touch-icon" href="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-180x180.png" /> | |
| 425 | +<meta name="msapplication-TileImage" content="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-270x270.png" /> | |
| 426 | +<style id="wp-custom-css"> | |
| 427 | +body { | |
| 428 | + font-size: 1.15em; | |
| 429 | + font-weight: 400; | |
| 430 | + color: #000000; | |
| 431 | +} | |
| 432 | + | |
| 433 | +p, .p { | |
| 434 | + font-size: 1.1em; | |
| 435 | + line-height: 1.4em; | |
| 436 | + font-weight: 500; | |
| 437 | + margin-bottom: 1em; | |
| 438 | +} | |
| 439 | + | |
| 440 | +b, .b, strong, .strong { | |
| 441 | + font-weight: 700; | |
| 442 | +} | |
| 443 | + | |
| 444 | +a, a:hover { | |
| 445 | + color: #004071; | |
| 446 | + text-decoration-line: none; | |
| 447 | +} | |
| 448 | + | |
| 449 | +p a, span a, label a { | |
| 450 | + text-decoration-line: none; | |
| 451 | +} | |
| 452 | + | |
| 453 | +.wpb_wrapper a { | |
| 454 | + color: #87CEEB; | |
| 455 | + text-decoration-line: none; | |
| 456 | +} | |
| 457 | + | |
| 458 | +ul > li { | |
| 459 | + font-size: 1.1em; | |
| 460 | + line-height: 1.2em; | |
| 461 | + list-style: disc; | |
| 462 | + list-style-position: outside; | |
| 463 | + margin-left: 20px; | |
| 464 | + padding-left: 0px; | |
| 465 | + padding-bottom: 10px; | |
| 466 | +} | |
| 467 | + | |
| 468 | +.wpb_text_column ul li { | |
| 469 | + list-style-type: disc; | |
| 470 | + list-style-position: outside; | |
| 471 | + margin-left: 5px; | |
| 472 | +} | |
| 473 | + | |
| 474 | +.post-content ul:not(.tabs-content):not(.slides), .wpb_text_column ul, ul.accordion ul, ul.tabs-content ul { | |
| 475 | + list-style-type: disc; | |
| 476 | + list-style-position: outside; | |
| 477 | + margin-left: 25px; | |
| 478 | +} | |
| 479 | + | |
| 480 | +h1, .h1 { | |
| 481 | + font-size: 2.6em; | |
| 482 | + line-height: 1.6em; | |
| 483 | + color: #16375E; | |
| 484 | + font-weight: bold !important; | |
| 485 | +} | |
| 486 | + | |
| 487 | +h2, .h2 { | |
| 488 | + font-size: 40px; | |
| 489 | + line-height: 1.4em; | |
| 490 | + font-weight:bold; | |
| 491 | +} | |
| 492 | + | |
| 493 | +h3, .h3 { | |
| 494 | + font-size: 1.3em; | |
| 495 | + line-height: 1.4em; | |
| 496 | + font-weight: 400; | |
| 497 | + margin-bottom: 0.5em; | |
| 498 | +} | |
| 499 | + | |
| 500 | +h4, .h4 { | |
| 501 | + font-size: 1.2em; | |
| 502 | + line-height: 1em; | |
| 503 | + font-weight: 500; | |
| 504 | +} | |
| 505 | + | |
| 506 | +h5, .h5 { | |
| 507 | + font-size: 1em; | |
| 508 | + line-height: 1.3em; | |
| 509 | + font-weight: 400; | |
| 510 | +} | |
| 511 | + | |
| 512 | +.alignlefticon { | |
| 513 | + float: left; | |
| 514 | + margin: 0 10px 0 0!important; | |
| 515 | +} | |
| 516 | + | |
| 517 | +.vertitop .pos-vertical-center { | |
| 518 | + top: 195px; | |
| 519 | +} | |
| 520 | + | |
| 521 | +.vertitop-faq .pos-vertical-center { | |
| 522 | + top: 140px; | |
| 523 | +} | |
| 524 | + | |
| 525 | +/* HEADER MENU */ | |
| 526 | +/* Header horizontal menu underline */ | |
| 527 | +.menu-horizontal>li>a:hover { | |
| 528 | + border-bottom:none; | |
| 529 | +} | |
| 530 | + | |
| 531 | +.menu-horizontal li:not(:last-child) { | |
| 532 | + margin-right: 1em; | |
| 533 | +} | |
| 534 | + | |
| 535 | +@media (min-width: 990px){ | |
| 536 | + .menu-horizontal li:not(:last-child) { | |
| 537 | + margin-right: 50px; | |
| 538 | + } | |
| 539 | +} | |
| 540 | + | |
| 541 | +.header--top-bar .type--fade, .header--top-bar a { | |
| 542 | + opacity: 1; | |
| 543 | + color: red; | |
| 544 | +} | |
| 545 | + | |
| 546 | +.btn--demo .btn__text{ | |
| 547 | + border-color: #34acaa !important; | |
| 548 | + color:#fff !important; | |
| 549 | +} | |
| 550 | + | |
| 551 | +/* Header drop down menu style */ | |
| 552 | +.dropdowns--hover .dropdown:hover>.dropdown__container>.container>.row>.dropdown__content { | |
| 553 | + position:absolute; | |
| 554 | + left:400px; | |
| 555 | + border-top:3px solid #17355f; | |
| 556 | + width: auto !important; | |
| 557 | +} | |
| 558 | + | |
| 559 | +.dropdowns--hover .dropdown:hover>.dropdown__container>.container>.row>.dropdown__content a:hover{ | |
| 560 | + color: #17355f !important; | |
| 561 | +} | |
| 562 | + | |
| 563 | +.menu-vertical li { | |
| 564 | + font-size: 0.9em; | |
| 565 | + font-weight: 400; | |
| 566 | + color: #666; | |
| 567 | + list-style: none; | |
| 568 | +} | |
| 569 | + | |
| 570 | +/* WPFront bar close button */ | |
| 571 | +.wpfront-close { | |
| 572 | + border: 1px solid #000000 !important; | |
| 573 | + background-color: #ffd600 !important; | |
| 574 | + color: #000000 !important; | |
| 575 | +} | |
| 576 | + | |
| 577 | +#wpfront-notification-bar div.wpfront-close { | |
| 578 | + position: absolute; | |
| 579 | + top: 11px; | |
| 580 | + right: 10px; | |
| 581 | + font-size: 11px; | |
| 582 | + padding: 8px 4px; | |
| 583 | + -webkit-border-radius: 2px; | |
| 584 | + -moz-border-radius: 2px; | |
| 585 | + border-radius: 2px; | |
| 586 | +} | |
| 587 | + | |
| 588 | +/* HEADER HERO CENTER ELEMENTS */ | |
| 589 | +.row-fixed-width { | |
| 590 | + max-width:1170px; | |
| 591 | + margin: 0 auto; | |
| 592 | +} | |
| 593 | + | |
| 594 | +.header-titre { | |
| 595 | + color: #FFF; | |
| 596 | +} | |
| 597 | + | |
| 598 | +/* CONTENT BOX STYLING */ | |
| 599 | +.lien-boite { | |
| 600 | + background-color:#87CEEB; | |
| 601 | + margin-top: 2em; | |
| 602 | + color: #000000; | |
| 603 | + padding:10px; | |
| 604 | + | |
| 605 | +} | |
| 606 | + | |
| 607 | +.solbox { | |
| 608 | + font-size: 0.9em; | |
| 609 | + line-height: 1em; | |
| 610 | + font-weight: 400; | |
| 611 | + margin-bottom: 1em; | |
| 612 | + text-align: left; | |
| 613 | +} | |
| 614 | + | |
| 615 | +/* Logo caroussel */ | |
| 616 | +.vc_row .vc_column-gap-30 { | |
| 617 | + margin-left: -10px; | |
| 618 | + margin-right: -10px; | |
| 619 | +} | |
| 620 | + | |
| 621 | +/* Ligne titre */ | |
| 622 | +.floatClear { | |
| 623 | + clear: both; | |
| 624 | +} | |
| 625 | +#wrapper { | |
| 626 | + text-align: center; | |
| 627 | + position: relative; | |
| 628 | +} | |
| 629 | +#wrapper .line { | |
| 630 | + border-bottom: 2px solid #87CEEB; | |
| 631 | + position: absolute; | |
| 632 | + width: 100%; | |
| 633 | + top: 15px; | |
| 634 | +} | |
| 635 | +#wrapper .textbox { | |
| 636 | + position: absolute; | |
| 637 | + width: 100%; | |
| 638 | +} | |
| 639 | +#wrapper .textbox .text { | |
| 640 | + background-color: white; | |
| 641 | + margin: 0px auto; | |
| 642 | + padding: 0px 30px; | |
| 643 | + text-align: center; | |
| 644 | + display: inline; | |
| 645 | + font-size: 24px; | |
| 646 | +} | |
| 647 | + | |
| 648 | +/* Remove white bar in header on IE11 */ | |
| 649 | +.nav-container { | |
| 650 | + min-height: 0px !important; | |
| 651 | +} | |
| 652 | + | |
| 653 | +/* box shadow */ | |
| 654 | +.box-shadow { | |
| 655 | + box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.07); | |
| 656 | +} | |
| 657 | +.no-box-shadow { | |
| 658 | + box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.07); | |
| 659 | +} | |
| 660 | + | |
| 661 | +/*.wpb_wrapper .col-sm-4 .vc_column-inner { | |
| 662 | +box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.07); | |
| 663 | +} */ | |
| 664 | + | |
| 665 | +.featured-news { | |
| 666 | + padding-top: 0px; | |
| 667 | + padding-bottom: 0px; | |
| 668 | + padding-right: 0px; | |
| 669 | +} | |
| 670 | + | |
| 671 | +.feature .boxed { | |
| 672 | + padding: 20px 10px 10px 10px; | |
| 673 | +} | |
| 674 | + | |
| 675 | +/* Top image in boxes */ | |
| 676 | +.top-radius .elementor-image-box-img .vc_single_image-img img { | |
| 677 | + border-radius: 20px 20px 0 0; | |
| 678 | +} | |
| 679 | + | |
| 680 | +.wpb_single_image .vc_single_image-wrapper.vc_box_rounded, .wpb_single_image .vc_single_image-wrapper.vc_box_rounded img { | |
| 681 | + border-radius: 10px 10px 0 0; | |
| 682 | +} | |
| 683 | + | |
| 684 | +.border--round { | |
| 685 | + border-radius: 10px; | |
| 686 | +} | |
| 687 | + | |
| 688 | +/* .all-radius .wpb_single_image .vc_single_image-wrapper.vc_box_rounded, .wpb_single_image .vc_single_image-wrapper.vc_box_rounded img { | |
| 689 | +border-radius: 10px 10px 10px 10px; | |
| 690 | +box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.07); | |
| 691 | +} */ | |
| 692 | + | |
| 693 | +/* Custom Page Element */ | |
| 694 | +.vc_custom_1602515817184 { | |
| 695 | + padding-top: 20px; | |
| 696 | + padding-bottom: 20px; | |
| 697 | +} | |
| 698 | + | |
| 699 | +/* HEADER */ | |
| 700 | +/* Header Logo */ | |
| 701 | +.bar .logo { | |
| 702 | + max-height: 90px; | |
| 703 | +} | |
| 704 | +@media (min-width: 1050px) { | |
| 705 | + .bar .logo { | |
| 706 | + margin-top: -49px; | |
| 707 | + } | |
| 708 | +} | |
| 709 | +@media (max-width: 1050px) { | |
| 710 | + .bar .logo { | |
| 711 | + margin-top: -10px; | |
| 712 | + } | |
| 713 | +} | |
| 714 | +.menu-item-home { | |
| 715 | + margin-top: 9px; | |
| 716 | + margin-right: 5px; | |
| 717 | +} | |
| 718 | + | |
| 719 | +/* Header horizontal menu style */ | |
| 720 | +.bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > a, .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > span { | |
| 721 | + color:#87CEEB; | |
| 722 | +} | |
| 723 | + | |
| 724 | +.bar-1 .menu-horizontal>li>.dropdown__trigger, .bar-1 .menu-horizontal>li>a { | |
| 725 | + font-size: 18px; | |
| 726 | + line-height: 2.166666666666667em; | |
| 727 | + text-transform: none; | |
| 728 | + font-weight: 600; | |
| 729 | + letter-spacing: .5px; | |
| 730 | + color: #0067a5; | |
| 731 | +} | |
| 732 | + | |
| 733 | +.dropdown > .dropdown__trigger:after{ | |
| 734 | + font-size: 20px; | |
| 735 | + bottom: -3px; | |
| 736 | +} | |
| 737 | + | |
| 738 | +.bar-1 .menu-horizontal>li>.dropdown__trigger:hover, .bar-1 .menu-horizontal>li>a:hover { | |
| 739 | + color: #004071; | |
| 740 | +} | |
| 741 | + | |
| 742 | +.menu-horizontal>li:not(:hover)>a, .menu-horizontal>li:not(:hover)>span, .menu-horizontal>li:not(:hover)>.modal-instance>.modal-trigger { | |
| 743 | + opacity: 1; | |
| 744 | +} | |
| 745 | + | |
| 746 | + | |
| 747 | +/* Mobile Menu */ | |
| 748 | + | |
| 749 | +@media (max-width: 768px){ | |
| 750 | + .menu-horizontal>li>a:hover { | |
| 751 | + color: #34ACAA !important; | |
| 752 | + } | |
| 753 | + .menu-horizontal li { | |
| 754 | + font-size: 0.9em; | |
| 755 | + font-weight: 400; | |
| 756 | + color: #666; | |
| 757 | + list-style: none; | |
| 758 | + } | |
| 759 | + .menu-vertical li { | |
| 760 | + font-size: 1.2em; | |
| 761 | + font-weight: 400; | |
| 762 | + color: #666; | |
| 763 | + list-style: none; | |
| 764 | + } | |
| 765 | + .btn--demo { | |
| 766 | + width: 25%; | |
| 767 | + } | |
| 768 | + /* Index F-H page logo positioning */ | |
| 769 | + .vertitop .pos-vertical-center { | |
| 770 | + top: -100px; | |
| 771 | + } | |
| 772 | + /* .wp-image-6925 { | |
| 773 | + margin-bottom: 60px; | |
| 774 | + } */ | |
| 775 | + .vertitop .pos-vertical-center h1 { | |
| 776 | + padding-top: 30px; | |
| 777 | + padding-bottom: 0px; | |
| 778 | + margin-bottom: -30px; | |
| 779 | + } | |
| 780 | + .mob400 p { | |
| 781 | + font-weight: 400; | |
| 782 | + } | |
| 783 | +} | |
| 784 | + | |
| 785 | +/* Header CTA button */ | |
| 786 | +.btn--sm { | |
| 787 | + padding-top: .2em; | |
| 788 | + padding-bottom: .2em; | |
| 789 | + padding-right: 1em; | |
| 790 | + padding-left: 1em; | |
| 791 | +} | |
| 792 | + | |
| 793 | +.btn, .btn a { | |
| 794 | + border-radius: 6px; | |
| 795 | + border: none; | |
| 796 | + border-width: 1px; | |
| 797 | + font-size: inherit; | |
| 798 | + line-height: 1.85714286em; | |
| 799 | +} | |
| 800 | + | |
| 801 | +.btn .btn__text { | |
| 802 | + color: #FFF; | |
| 803 | + font-weight: 600; | |
| 804 | + font-size: 20px; | |
| 805 | + font-family:'Gotham',sans-serif; | |
| 806 | +} | |
| 807 | + | |
| 808 | +.btn--demo, .btn__text a { | |
| 809 | + color: #4a90e2; | |
| 810 | + font-weight: 400; | |
| 811 | +} | |
| 812 | + | |
| 813 | +.btn--demo, .btn--demo:visited { | |
| 814 | + background: #87CEEB; | |
| 815 | + border-color: #fff; | |
| 816 | +} | |
| 817 | + | |
| 818 | +/* Boutons CTA */ | |
| 819 | +.btn--primary, .btn--primary:visited { | |
| 820 | + color: #000000 !important; | |
| 821 | + background: transparent; | |
| 822 | + border-color: #87CEEB; | |
| 823 | +} | |
| 824 | + | |
| 825 | +.btn--primary:active { | |
| 826 | + background: #87CEEB; | |
| 827 | +} | |
| 828 | + | |
| 829 | +/* FOOTER SECTION */ | |
| 830 | +.footer-6 { | |
| 831 | + background: #004071; | |
| 832 | + padding-top: 50px; | |
| 833 | + padding-bottom: 20px; | |
| 834 | +} | |
| 835 | + | |
| 836 | +section, footer { | |
| 837 | + padding-top: 3.42857143em; | |
| 838 | + padding-bottom: 3.42857143em; | |
| 839 | +} | |
| 840 | + | |
| 841 | +/* Footer 1st column */ | |
| 842 | +.textwidget { | |
| 843 | + padding-top: 2em; | |
| 844 | + font-size: 13px; | |
| 845 | + margin-bottom: 10px; | |
| 846 | + text-align: justify; | |
| 847 | +} | |
| 848 | + | |
| 849 | +/* Footer 2nd column */ | |
| 850 | +#nav_menu-2, #nav_menu-3 { | |
| 851 | + padding-left: 60px; | |
| 852 | + margin-bottom: 60px; | |
| 853 | +} | |
| 854 | + | |
| 855 | +footer a { | |
| 856 | + font-weight: 400; | |
| 857 | +} | |
| 858 | + | |
| 859 | +footer ul:not(.list-inline):not(.slides)>li { | |
| 860 | + font-size: 14px; | |
| 861 | + line-height: 1.8em!important; | |
| 862 | +} | |
| 863 | + | |
| 864 | +footer ul li { | |
| 865 | + padding: 0px; | |
| 866 | + list-style: none; | |
| 867 | + margin-left: 5px; | |
| 868 | +} | |
| 869 | + | |
| 870 | +/* Footer 3rd column */ | |
| 871 | +#text-4 { | |
| 872 | + padding-left: 80px; | |
| 873 | +} | |
| 874 | + | |
| 875 | +h6.type--uppercase, .h6.type--uppercase { | |
| 876 | + margin-block-end: -10px; | |
| 877 | +} | |
| 878 | + | |
| 879 | +.alignlefticon { | |
| 880 | + float: none; | |
| 881 | +} | |
| 882 | + | |
| 883 | +/* Footer columns on mobile */ | |
| 884 | +@media (max-width: 768px){ | |
| 885 | + .widget_media_image img { | |
| 886 | + display: block; | |
| 887 | + margin-left: auto; | |
| 888 | + margin-right: auto; | |
| 889 | + } | |
| 890 | + #nav_menu-2, #nav_menu-3 { | |
| 891 | + display: none; | |
| 892 | + padding-left: 150px; | |
| 893 | + margin-top: 30px; | |
| 894 | + } | |
| 895 | + #text-4 h6 { | |
| 896 | + padding-left: 0px; | |
| 897 | + margin-top: 30px; | |
| 898 | + text-align: left; | |
| 899 | + } | |
| 900 | + #text-4 { | |
| 901 | + padding: 0px; | |
| 902 | + } | |
| 903 | + #text-3 .textwidget, #text-4 .textwidget { | |
| 904 | + padding-left: 0px; | |
| 905 | + text-align: left; | |
| 906 | + } | |
| 907 | +} | |
| 908 | + | |
| 909 | +/* Footer sub footer */ | |
| 910 | +.footer-stack-copyright, .menu-item-4840 ul>li { | |
| 911 | + font-size: 14px; | |
| 912 | + text-align: center; | |
| 913 | +} | |
| 914 | + | |
| 915 | +.menu-footer-menu-container>ul>li { | |
| 916 | + font-size: 14px; | |
| 917 | + display: inline; | |
| 918 | + padding: 0px 10px 0px 10px | |
| 919 | +} | |
| 920 | + | |
| 921 | +/* How to not impact header menu? */ | |
| 922 | +.menu-footer-menu, .menu-item-type-post_type:not(:last-child) { | |
| 923 | + border-right: 0px solid #bbb; | |
| 924 | +} | |
| 925 | + | |
| 926 | +.menu-footer-menu, .menu-item-type-post_type:last-child { | |
| 927 | + border-right: 0px; | |
| 928 | +} | |
| 929 | + | |
| 930 | +.vc_btn3.vc_btn3-size-lg { | |
| 931 | + font-size: 18px; | |
| 932 | + font-weight: 400; | |
| 933 | + padding-top: 16px; | |
| 934 | + padding-bottom: 20px; | |
| 935 | + padding-left: 40px; | |
| 936 | + padding-right: 40px; | |
| 937 | +} | |
| 938 | + | |
| 939 | +.vc_btn3.vc_btn3-color-orange, .vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat { | |
| 940 | + color: #000000; | |
| 941 | + background-color: #87CEEB; | |
| 942 | +} | |
| 943 | + | |
| 944 | + | |
| 945 | +/* TEMPLATE LAYOUT */ | |
| 946 | +/* 5 column layout */ | |
| 947 | +@media (min-width: 768px){ | |
| 948 | + .column5 { | |
| 949 | + width: 16%; | |
| 950 | + margin: 0 2%; | |
| 951 | + float:left; | |
| 952 | + } | |
| 953 | + .column6 { | |
| 954 | + width: 12%; | |
| 955 | + margin: 0 2%; | |
| 956 | + float:left; | |
| 957 | + } | |
| 958 | +} | |
| 959 | + | |
| 960 | +/* BLOG */ | |
| 961 | +/* Note: Grid template: loop/content-post-cards.php */ | |
| 962 | +/* Blog post font style */ | |
| 963 | +article .article__body p, article .article__body ul { | |
| 964 | + font-size: 1.1em; | |
| 965 | + line-height: 1.6em; | |
| 966 | + font-weight: 400; | |
| 967 | + color: black; | |
| 968 | +} | |
| 969 | + | |
| 970 | +.wpb_wrapper a { | |
| 971 | + color: #13223f; | |
| 972 | + text-decoration-line: none; | |
| 973 | +} | |
| 974 | + | |
| 975 | +.vc_custom_heading a, .vc_custom_heading a:focus, .vc_custom_heading a:hover, .vc_custom_heading a:visited { | |
| 976 | + font-size: 1em; | |
| 977 | + line-height: 1.3em; | |
| 978 | + font-weight: 400; | |
| 979 | + color: #13223f; | |
| 980 | + text-decoration-line: none; | |
| 981 | +} | |
| 982 | + | |
| 983 | +/* Style Most Recent Articles List */ | |
| 984 | +.sidebar li { | |
| 985 | + font-size: 1em; | |
| 986 | + line-height: 1.2em; | |
| 987 | + font-weight: 400; | |
| 988 | + padding-bottom: 10px; | |
| 989 | +} | |
| 990 | + | |
| 991 | +/* Remove pagination after 3 latest blog post on homepage */ | |
| 992 | +.nopagination .pagination { | |
| 993 | + display: none; | |
| 994 | +} | |
| 995 | + | |
| 996 | +/* Vertical Spacing in Grid view */ | |
| 997 | +.masonry__item:not(:empty) { | |
| 998 | + margin-bottom: 0px; | |
| 999 | + transform-style: preserve-3d; | |
| 1000 | +} | |
| 1001 | + | |
| 1002 | +/* Category label in Grid mode */ | |
| 1003 | +.label { | |
| 1004 | + display: inline-block; | |
| 1005 | + font-size: 9px; | |
| 1006 | + font-weight: 700; | |
| 1007 | + letter-spacing: .5px; | |
| 1008 | + color: #000; | |
| 1009 | + text-transform: uppercase; | |
| 1010 | + height: 26px; | |
| 1011 | + min-width: 65px; | |
| 1012 | + padding: 0 10px; | |
| 1013 | + text-align: center; | |
| 1014 | + border-radius: 0px 20px 20px 0px; | |
| 1015 | + position: relative; | |
| 1016 | + z-index: 3; | |
| 1017 | + top: 8.5em; | |
| 1018 | + left: 0em; | |
| 1019 | +} | |
| 1020 | +.label:not([class*='bg--']) { | |
| 1021 | + background: #87CEEB; | |
| 1022 | +} | |
| 1023 | + | |
| 1024 | +.wpcf7-form p label { | |
| 1025 | + color: #004071 !important; | |
| 1026 | + font-size:18px !important; | |
| 1027 | +} | |
| 1028 | +.label-2 { | |
| 1029 | + display: inline-block; | |
| 1030 | + font-size: 9px; | |
| 1031 | + font-weight: 700; | |
| 1032 | + letter-spacing: .5px; | |
| 1033 | + color: #fff; | |
| 1034 | + text-transform: uppercase; | |
| 1035 | + height: 26px; | |
| 1036 | + min-width: 65px; | |
| 1037 | + padding: 0 20px; | |
| 1038 | + text-align: center; | |
| 1039 | + border-radius: 0px 20px 20px 0px; | |
| 1040 | + position: relative; | |
| 1041 | + z-index: 3; | |
| 1042 | + top: -26em; | |
| 1043 | + left: 0em; | |
| 1044 | +} | |
| 1045 | + | |
| 1046 | +.label-2:not([class*='bg--']) { | |
| 1047 | + background: #87CEEB; | |
| 1048 | +} | |
| 1049 | + | |
| 1050 | +/* Hide breadcrumb in Tag page */ | |
| 1051 | +.breadcrumbs { | |
| 1052 | + display: none; | |
| 1053 | +} | |
| 1054 | +.breadcrumb--section .background-image-holder { | |
| 1055 | + height: 280px; | |
| 1056 | + background-color:#ffffff !important; | |
| 1057 | +} | |
| 1058 | + | |
| 1059 | +.team-title { | |
| 1060 | + padding-top: 30px; | |
| 1061 | + margin-top: 30px; | |
| 1062 | +} | |
| 1063 | + | |
| 1064 | +/* CONTACT FORM */ | |
| 1065 | +.titre-champ { | |
| 1066 | + font-size: 1.1em; | |
| 1067 | + line-height: 1.4em; | |
| 1068 | + font-weight: 400; | |
| 1069 | + margin-bottom: 1em; | |
| 1070 | +} | |
| 1071 | + | |
| 1072 | +input[type], select, textarea { | |
| 1073 | + margin-bottom: 0.5em; | |
| 1074 | + margin-top: 0.5em; | |
| 1075 | + border:1.5px solid #004071; | |
| 1076 | +} | |
| 1077 | +input[type="checkbox"] { | |
| 1078 | + width: 13px !important ; | |
| 1079 | + -webkit-appearance: checkbox !important; | |
| 1080 | +} | |
| 1081 | + | |
| 1082 | +span.wpcf7-list-item { | |
| 1083 | + display: inline-block; | |
| 1084 | + margin: 0 0 0 0; | |
| 1085 | +} | |
| 1086 | + | |
| 1087 | +button[type="submit"]:not([class*='col-']) { | |
| 1088 | + width: 30%; | |
| 1089 | +} | |
| 1090 | + | |
| 1091 | +.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output { | |
| 1092 | + border-color: #D90000; | |
| 1093 | + border-radius: 25px; | |
| 1094 | +} | |
| 1095 | + | |
| 1096 | +.wpcf7 form.sent .wpcf7-response-output { | |
| 1097 | + border-color: #3767D9; | |
| 1098 | + width: 50%; | |
| 1099 | +} | |
| 1100 | + | |
| 1101 | +/* Apply custom style to all CF7 checkboxes */ | |
| 1102 | +.wpcf7 input[type="checkbox"] { | |
| 1103 | + opacity: 0; | |
| 1104 | + position: absolute; | |
| 1105 | + width: 25px; | |
| 1106 | + height: 25px; | |
| 1107 | + margin: 0; | |
| 1108 | + z-index: 2; | |
| 1109 | + cursor: pointer; | |
| 1110 | +} | |
| 1111 | + | |
| 1112 | +.wpcf7 .wpcf7-list-item { | |
| 1113 | + position: relative; | |
| 1114 | + padding-left: 28px; | |
| 1115 | + display: inline-block; | |
| 1116 | + cursor: pointer; | |
| 1117 | +} | |
| 1118 | + | |
| 1119 | +.wpcf7 input[type="checkbox"] + span::before { | |
| 1120 | + content: ""; | |
| 1121 | + position: absolute; | |
| 1122 | + left: 0; | |
| 1123 | + top: 0; | |
| 1124 | + width: 25px; | |
| 1125 | + height: 25px; | |
| 1126 | + border: 1px solid #004071; | |
| 1127 | + background-color: white; | |
| 1128 | + box-sizing: border-box; | |
| 1129 | + border-radius: 0px; | |
| 1130 | + transition: all 0.2s ease; | |
| 1131 | + margin-top:5px; | |
| 1132 | +} | |
| 1133 | + | |
| 1134 | +.wpcf7 input[type="checkbox"]:checked + span::before { | |
| 1135 | + background-image: linear-gradient(#004071, #004071); | |
| 1136 | + background-clip: content-box; | |
| 1137 | + padding: 2px; /* this creates the white gap between border and inner fill */ | |
| 1138 | +} | |
| 1139 | + | |
| 1140 | + | |
| 1141 | +@media (max-width: 768px){ | |
| 1142 | + input:not([class*='col-']), select:not([class*='col-']), .input-select:not([class*='col-']), textarea:not([class*='col-']) { | |
| 1143 | + width: 100%; | |
| 1144 | + margin-top:0; | |
| 1145 | + } | |
| 1146 | + .menu-item>a{ | |
| 1147 | + color:#000000 !important; | |
| 1148 | + } | |
| 1149 | + button[type="submit"]:not([class*='col-']) { | |
| 1150 | + width: 50%; | |
| 1151 | + } | |
| 1152 | + .wpcf7 form.sent .wpcf7-response-output { | |
| 1153 | + width: 100%; | |
| 1154 | + } | |
| 1155 | +} | |
| 1156 | + | |
| 1157 | +/* Hide Captcha all pages */ | |
| 1158 | +body:not(.page-id-XX) .grecaptcha-badge { | |
| 1159 | + display: none; | |
| 1160 | +} | |
| 1161 | + | |
| 1162 | +/*css pour les offres*/ | |
| 1163 | +li.location a.google_map_link { | |
| 1164 | + color: #87CEEB; | |
| 1165 | + text-decoration: none; | |
| 1166 | + transition: color 0.3s ease; | |
| 1167 | +} | |
| 1168 | +li.location a.google_map_link:hover { | |
| 1169 | + color: #0022CC; | |
| 1170 | +} | |
| 1171 | +h1.h2 { | |
| 1172 | + background-image: url('https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/07/SITE_TALENTS_CHUM_PHOTO_1900_V1-06.jpg'); | |
| 1173 | + background-repeat: no-repeat; | |
| 1174 | + background-position: center center; | |
| 1175 | + background-size: 105vw 60vh; | |
| 1176 | + background-attachment: scroll; | |
| 1177 | + color: white; | |
| 1178 | + padding: 40px 20px; | |
| 1179 | + height:40vh; | |
| 1180 | +} | |
| 1181 | +li.job-type.temps-complet , li.job-type.temps-partiel-regulier, li.job-type.temps-partiel-occasionnel{ | |
| 1182 | + background-color: #87CEEB !important; | |
| 1183 | + color: white !important; | |
| 1184 | + text-align: center !important; | |
| 1185 | + justify-content: center !important; | |
| 1186 | + text-align: center !important; | |
| 1187 | + padding-top:10px !important; | |
| 1188 | + padding-right:10px !important; | |
| 1189 | + border-radius: 10px; | |
| 1190 | + color: black !important; | |
| 1191 | +} | |
| 1192 | +ul.job-listing-meta li { | |
| 1193 | + display: block; | |
| 1194 | +} | |
| 1195 | +ul.job-listing-meta { | |
| 1196 | + display: none; | |
| 1197 | +} | |
| 1198 | +input.application_button.button { | |
| 1199 | + background-color: #fff; | |
| 1200 | + color: #004071; | |
| 1201 | + border: none; | |
| 1202 | + width:auto; | |
| 1203 | + cursor: pointer; | |
| 1204 | + transition: background-color 0.3s ease; | |
| 1205 | +} | |
| 1206 | +input.application_button.button:hover { | |
| 1207 | + background-color: #004071 ; | |
| 1208 | + color:#fff; | |
| 1209 | +} | |
| 1210 | +div.addtoany_share_save_container { | |
| 1211 | + display: none; | |
| 1212 | +} | |
| 1213 | +.job_description h1, | |
| 1214 | +.job_description h2, | |
| 1215 | +.job_description h3, | |
| 1216 | +.job_description h4, | |
| 1217 | +.job_description h5, | |
| 1218 | +.job_description h6 { | |
| 1219 | + margin-bottom: 10px; | |
| 1220 | + margin-top: 20px; | |
| 1221 | + color:#000; | |
| 1222 | + font-weight: bold; | |
| 1223 | + font-size:25px; | |
| 1224 | +} | |
| 1225 | +.job_description { | |
| 1226 | + font-size:19px; | |
| 1227 | +} | |
| 1228 | + | |
| 1229 | +.single_job_listing hr{ | |
| 1230 | + border-color: #16375E50 !important; | |
| 1231 | +} | |
| 1232 | +.single_job_listing .default-text{ | |
| 1233 | + padding-bottom:20px; | |
| 1234 | + border-bottom: 1px solid #16375E50; | |
| 1235 | +} | |
| 1236 | +.single_job_listing .job_description h2{ | |
| 1237 | + padding-top:50px; | |
| 1238 | +} | |
| 1239 | +li.wpjmef-field-salary { | |
| 1240 | + display: none !important; | |
| 1241 | +} | |
| 1242 | +img.company_logo { | |
| 1243 | + display: none; | |
| 1244 | +} | |
| 1245 | +/* | |
| 1246 | +ul.meta { | |
| 1247 | + width: 100% !important; | |
| 1248 | + margin-top: 10px !important; | |
| 1249 | + display: flex; | |
| 1250 | + align-items: center; | |
| 1251 | +} | |
| 1252 | +ul.meta li { | |
| 1253 | + display: inline !important; | |
| 1254 | +}*/ | |
| 1255 | + | |
| 1256 | +/*hide copyright in footer*/ | |
| 1257 | +div.footer__lower.text-center-xs { | |
| 1258 | + display: none; | |
| 1259 | +} | |
| 1260 | +.alignleft { | |
| 1261 | + margin-right: 10px !important; | |
| 1262 | +} | |
| 1263 | +/*hide le + dans les offres*/ | |
| 1264 | +.a2a_dd.addtoany_share_save.addtoany_share { | |
| 1265 | + display: none; | |
| 1266 | +} | |
| 1267 | +/*hide the alerte button in Liste des offres d’emplois*/ | |
| 1268 | +a.alert { | |
| 1269 | + display: none; | |
| 1270 | +} | |
| 1271 | +/* Hide borders and set background to white for ul and its li children in job types*/ | |
| 1272 | +ul.job_types { | |
| 1273 | + list-style: none !important; | |
| 1274 | + padding: 0 !important; | |
| 1275 | + border: none !important; | |
| 1276 | + background-color: transparent !important; | |
| 1277 | +} | |
| 1278 | +ul.job_types li { | |
| 1279 | + border: none !important; | |
| 1280 | + font-size: 125%; | |
| 1281 | +} | |
| 1282 | +.showing_jobs { | |
| 1283 | + background-color:#7cafde82 !important; | |
| 1284 | +} | |
| 1285 | + | |
| 1286 | +.job-type { | |
| 1287 | + margin-right: 20px; | |
| 1288 | +} | |
| 1289 | + | |
| 1290 | +div.job-location { | |
| 1291 | + font-weight: bold; | |
| 1292 | + margin-top: -6.5%; | |
| 1293 | +} | |
| 1294 | + | |
| 1295 | +.before-job button.application_button.button { | |
| 1296 | + color: white; | |
| 1297 | + border: 2px solid #ffffff; | |
| 1298 | + cursor: pointer; | |
| 1299 | + transition: background-color 0.3s ease; | |
| 1300 | + border-radius: 30px; | |
| 1301 | + font-weight:700; | |
| 1302 | +} | |
| 1303 | + | |
| 1304 | +.before-job button.application_button.button:hover { | |
| 1305 | + color: #483388; | |
| 1306 | + background: #ffffff; | |
| 1307 | +} | |
| 1308 | +.before-job .job_application.application{ | |
| 1309 | + margin-top: -110px; | |
| 1310 | + z-index: 10; | |
| 1311 | + position: relative; | |
| 1312 | +} | |
| 1313 | + | |
| 1314 | +.job-manager-single-alert-link a { | |
| 1315 | + color: #6BA4BB; | |
| 1316 | +} | |
| 1317 | +.job-manager-single-alert-link a:hover { | |
| 1318 | + color: #B3E0F7; | |
| 1319 | +} | |
| 1320 | +.back-link { | |
| 1321 | + display: block; | |
| 1322 | + width: 100%; | |
| 1323 | + margin-bottom: -77.5px; | |
| 1324 | + margin-left: -10px; | |
| 1325 | +} | |
| 1326 | +.job-type-location .job-type, | |
| 1327 | +.job-type-location .job-location, | |
| 1328 | +.job-type-location .job-time-left{ | |
| 1329 | + margin-right: 20px; | |
| 1330 | + color: #004071; | |
| 1331 | + font-size: 19px; | |
| 1332 | + font-weight: normal; | |
| 1333 | +} | |
| 1334 | + | |
| 1335 | +.application_details { | |
| 1336 | + background-color: white; | |
| 1337 | +} | |
| 1338 | + | |
| 1339 | +.back-link a { | |
| 1340 | + color: #767676; | |
| 1341 | +} | |
| 1342 | +.back-link a:hover { | |
| 1343 | + color: gray; | |
| 1344 | +} | |
| 1345 | + | |
| 1346 | +.job-type-location span { | |
| 1347 | + font-family: 'Gotham',sans-serif; | |
| 1348 | +} | |
| 1349 | + | |
| 1350 | +.search_submit { | |
| 1351 | + text-align: right; | |
| 1352 | +} | |
| 1353 | + | |
| 1354 | +@media screen and (max-width: 768px) { | |
| 1355 | + .job_application { | |
| 1356 | + flex: 100%; | |
| 1357 | + justify-content: flex-start; | |
| 1358 | + } | |
| 1359 | +} | |
| 1360 | + | |
| 1361 | +.input-select { | |
| 1362 | + display: block; | |
| 1363 | +} | |
| 1364 | + | |
| 1365 | +div.search_categories { | |
| 1366 | + padding-top:10px !important; | |
| 1367 | +} | |
| 1368 | +.search_jobs { | |
| 1369 | + display: flex ; | |
| 1370 | + flex-wrap: wrap ; | |
| 1371 | +} | |
| 1372 | +.search_submit { | |
| 1373 | + flex: 30%; | |
| 1374 | +} | |
| 1375 | + | |
| 1376 | +.search_location { | |
| 1377 | + width: 100% !important; | |
| 1378 | + padding-top: 10px; | |
| 1379 | + padding-left:0 !important; | |
| 1380 | + flex: 1; | |
| 1381 | + min-width: 0; | |
| 1382 | +} | |
| 1383 | + | |
| 1384 | +.search_location .input-select { | |
| 1385 | + display: block; | |
| 1386 | +} | |
| 1387 | + | |
| 1388 | +.search_keywords { | |
| 1389 | + width: 100% !important; | |
| 1390 | + padding-top: 10px; | |
| 1391 | + padding-left:0 !important; | |
| 1392 | + padding-right:0 !important; | |
| 1393 | + flex: 2; | |
| 1394 | + min-width: 0; | |
| 1395 | +} | |
| 1396 | + | |
| 1397 | +.location-n-cat .location-n-cat:has(.search_keywords) { | |
| 1398 | + width: 100%; | |
| 1399 | + display: flex; | |
| 1400 | + gap: 10px; | |
| 1401 | + flex-wrap: wrap; | |
| 1402 | +} | |
| 1403 | + | |
| 1404 | +.search_submit { | |
| 1405 | + margin-top: 10px; | |
| 1406 | +} | |
| 1407 | + | |
| 1408 | +/* Adjustments for select dropdowns */ | |
| 1409 | +/* Hide the comments */ | |
| 1410 | +.comments { | |
| 1411 | + display: none; | |
| 1412 | +} | |
| 1413 | +/* Hide the comment form */ | |
| 1414 | +.comments-form { | |
| 1415 | + display: none; | |
| 1416 | +} | |
| 1417 | + | |
| 1418 | +input:not([class*='col-']), select:not([class*='col-']), .input-select:not([class*='col-']), textarea:not([class*='col-']) { | |
| 1419 | + width: 100%; | |
| 1420 | + margin-top:0; | |
| 1421 | +} | |
| 1422 | + | |
| 1423 | +#search_location { | |
| 1424 | + background-color: transparent; | |
| 1425 | + border: 2px solid #004071; | |
| 1426 | + border-radius: 10px; | |
| 1427 | + padding-top: 10px; | |
| 1428 | + padding-top: 5px; | |
| 1429 | + font-size: 16px; | |
| 1430 | +} | |
| 1431 | +.input-select:after { | |
| 1432 | + position: absolute; | |
| 1433 | + right: 0; | |
| 1434 | + height: 100%; | |
| 1435 | + top: 0; | |
| 1436 | + font-size: 40px; | |
| 1437 | + font-weight: 700; | |
| 1438 | + color: #13223f !important; | |
| 1439 | + transform: rotate(90deg); | |
| 1440 | + content: '\203A'; | |
| 1441 | + pointer-events: none; | |
| 1442 | + border-left: none; | |
| 1443 | + line-height: 60px; | |
| 1444 | +} | |
| 1445 | +#search_keywords { | |
| 1446 | + background-color: transparent; | |
| 1447 | + border: 2px solid #004071; | |
| 1448 | + border-radius: 10px; | |
| 1449 | + color: #004071 !important; | |
| 1450 | +} | |
| 1451 | +input[type]:focus, select:focus, textarea:focus { | |
| 1452 | + border-color: #2b546b !important; | |
| 1453 | +} | |
| 1454 | +select { | |
| 1455 | + color: #B3B3BD; | |
| 1456 | +} | |
| 1457 | +@media screen and (max-width: 767px) { | |
| 1458 | + input[type="submit"] { | |
| 1459 | + width: 100% !important; | |
| 1460 | + font-size:18px!important; | |
| 1461 | + } | |
| 1462 | + | |
| 1463 | +} | |
| 1464 | +.fas.fa-calendar, .fas.fa-clock, .fas.fa-map-marker-alt { | |
| 1465 | + color: #004071; | |
| 1466 | + margin-right:5px; | |
| 1467 | +} | |
| 1468 | + | |
| 1469 | +.footer-6 { | |
| 1470 | + position: absolute; | |
| 1471 | + left: 0; | |
| 1472 | + right: 0; | |
| 1473 | + width: 100%; | |
| 1474 | + margin-top:10px; | |
| 1475 | +} | |
| 1476 | + | |
| 1477 | +.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn--primary { | |
| 1478 | + background-color: #004071; | |
| 1479 | + color: #fff !important; | |
| 1480 | + width: auto; | |
| 1481 | + padding: 0px 15px ; | |
| 1482 | + font-size:23px; | |
| 1483 | + margin-top: 10px; | |
| 1484 | + font-family:'Gotham',sans-serif; | |
| 1485 | + height:auto; | |
| 1486 | + box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3);} | |
| 1487 | + | |
| 1488 | +.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn--primary:hover{ | |
| 1489 | + background-color: #fff; | |
| 1490 | + color:#004071 !important; | |
| 1491 | + border:1px solid #004071; | |
| 1492 | +} | |
| 1493 | + | |
| 1494 | +.masonry { | |
| 1495 | + transform: scale(0.6); | |
| 1496 | + margin-top: -50%; | |
| 1497 | + margin-bottom: -40%; | |
| 1498 | +} | |
| 1499 | + | |
| 1500 | +.masonry__item h4 { | |
| 1501 | + transform: scale(1.3); | |
| 1502 | +} | |
| 1503 | + | |
| 1504 | +div.article__title + span { | |
| 1505 | + display: none; | |
| 1506 | +} | |
| 1507 | + | |
| 1508 | +.bar__module a.btn--demo { | |
| 1509 | + background-color: #004071; | |
| 1510 | + border-radius: 5px; | |
| 1511 | + padding:5px 25px; | |
| 1512 | + width:auto; | |
| 1513 | +} | |
| 1514 | +.btn--demo .btn__text::before { | |
| 1515 | + content: ""; | |
| 1516 | + display: none; | |
| 1517 | + width: 20px; | |
| 1518 | + height: 20px; | |
| 1519 | + margin-right: 8px; | |
| 1520 | + background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='white' stroke-width='2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 4-6 8-6s8 2 8 6'/%3E%3C/svg%3E"); | |
| 1521 | + background-size: contain; | |
| 1522 | + background-repeat: no-repeat; | |
| 1523 | + vertical-align: middle; | |
| 1524 | +} | |
| 1525 | + | |
| 1526 | +#menu1 { | |
| 1527 | + padding-top: 60px; | |
| 1528 | +} | |
| 1529 | + | |
| 1530 | +.flickity-page-dots .dot { | |
| 1531 | + display: none; | |
| 1532 | +} | |
| 1533 | + | |
| 1534 | +.wpcf7-list-item-label { | |
| 1535 | + font-size: 17px; | |
| 1536 | + display: inline-block; | |
| 1537 | + vertical-align: top; | |
| 1538 | + padding-left: 0.4em; | |
| 1539 | + line-height: 30px; | |
| 1540 | + color:#004071; | |
| 1541 | +} | |
| 1542 | +.wpcf7-form a{ | |
| 1543 | + color:#000; | |
| 1544 | + font-weight:600; | |
| 1545 | +} | |
| 1546 | + | |
| 1547 | +.wpcf7-list-item-label a{ | |
| 1548 | + font-weight:700; | |
| 1549 | + color:#004071; | |
| 1550 | +} | |
| 1551 | + | |
| 1552 | +.wpcf7-list-item label { | |
| 1553 | + display: flex; | |
| 1554 | + align-items: flex-start; | |
| 1555 | +} | |
| 1556 | + | |
| 1557 | +.wpcf7-list-item input[type="checkbox"] { | |
| 1558 | + margin-top: 0.2em; | |
| 1559 | +} | |
| 1560 | + | |
| 1561 | +#menu-vertical-menu-footer .menu-item { | |
| 1562 | + margin-left: 20px; | |
| 1563 | +} | |
| 1564 | + | |
| 1565 | +/* Hériter du style pour les Exigences et le Mandat dans une offre d'emploi */ | |
| 1566 | +.default-text * { | |
| 1567 | + font-size: inherit !important; | |
| 1568 | + padding-top: inherit !important; | |
| 1569 | + font-family: inherit !important; | |
| 1570 | + background-color: inherit !important; | |
| 1571 | +} | |
| 1572 | + | |
| 1573 | +/* Hériter du style pour Informations_de_base et Conditions_de_travail dans une offre d'emploi */ | |
| 1574 | +.Informations_de_base *, .Conditions_de_travail * { | |
| 1575 | + font-size: inherit !important; | |
| 1576 | +} | |
| 1577 | + | |
| 1578 | +/*homepage hero menu*/ | |
| 1579 | +.full-width-div { | |
| 1580 | + display: flex; | |
| 1581 | + flex-wrap: wrap; | |
| 1582 | + justify-content: space-between; | |
| 1583 | +} | |
| 1584 | + | |
| 1585 | +.image-container { | |
| 1586 | + width: calc(33.33% - 5px); | |
| 1587 | + flex-grow: 1; | |
| 1588 | + position: relative; | |
| 1589 | + text-align: center; | |
| 1590 | + font-weight: bold; | |
| 1591 | + display: inline-block; | |
| 1592 | + margin: 0; | |
| 1593 | + padding: 0; | |
| 1594 | + box-sizing: border-box; | |
| 1595 | +} | |
| 1596 | +.image-container::after { | |
| 1597 | + content: ""; | |
| 1598 | + position: absolute; | |
| 1599 | + inset: 0; | |
| 1600 | + background: linear-gradient( | |
| 1601 | + to bottom, | |
| 1602 | + rgba(230, 159, 67, 0.2) 25%, | |
| 1603 | + rgb(51, 46, 116, 0.9) 100% | |
| 1604 | + ); | |
| 1605 | + pointer-events: none; | |
| 1606 | + z-index:0; | |
| 1607 | +} | |
| 1608 | +.image-container:hover::after { | |
| 1609 | + background: linear-gradient( | |
| 1610 | + to bottom, | |
| 1611 | + rgb(44, 142, 151, 0.9) 30%, | |
| 1612 | + rgba(74, 39, 133, 0.9) 90% | |
| 1613 | + ); | |
| 1614 | +} | |
| 1615 | +.image-container img { | |
| 1616 | + width: 100%; | |
| 1617 | + max-width: 100%; | |
| 1618 | + height: auto; | |
| 1619 | + margin-bottom: 0px; | |
| 1620 | + display: block; | |
| 1621 | +} | |
| 1622 | +.image-container .text { | |
| 1623 | + position: absolute; | |
| 1624 | + bottom: 0; | |
| 1625 | + left: 0; | |
| 1626 | + width: 100%; | |
| 1627 | + text-align: center; | |
| 1628 | + padding: 10px; | |
| 1629 | + z-index: 1; | |
| 1630 | + transform: translateY(0); | |
| 1631 | + transition: | |
| 1632 | + top 0.4s ease, | |
| 1633 | + bottom 0.4s ease, | |
| 1634 | + transform 0.4s ease, | |
| 1635 | + background 0.4s ease, | |
| 1636 | + opacity 0.4s ease; | |
| 1637 | +} | |
| 1638 | +.image-container:hover .text { | |
| 1639 | + bottom: auto; | |
| 1640 | + top: 50%; | |
| 1641 | + transform: translateY(-50%); | |
| 1642 | +} | |
| 1643 | +.image-container .text span { | |
| 1644 | + color: white; | |
| 1645 | + font-size: 25px; | |
| 1646 | + font-weight: normal; | |
| 1647 | + z-index: 1; | |
| 1648 | +} | |
| 1649 | + | |
| 1650 | +@media (max-width: 767px) { | |
| 1651 | + .image-container { | |
| 1652 | + width: 100%; | |
| 1653 | + } | |
| 1654 | + .text span { | |
| 1655 | + font-size: 20px; | |
| 1656 | + line-height: 75%; | |
| 1657 | + } | |
| 1658 | +} | |
| 1659 | + | |
| 1660 | +.hero-text { | |
| 1661 | + color: white; | |
| 1662 | + position: relative; | |
| 1663 | +} | |
| 1664 | + | |
| 1665 | +.hero-text span { | |
| 1666 | + display: block; | |
| 1667 | + margin: 11px 0 17px 0; | |
| 1668 | + font-size: 30px; | |
| 1669 | + color: white; | |
| 1670 | + position: relative; | |
| 1671 | +} | |
| 1672 | + | |
| 1673 | +/*single job*/ | |
| 1674 | +.article__title { | |
| 1675 | + margin-bottom: -60px !important; | |
| 1676 | + margin-top: -60px !important; | |
| 1677 | + margin-left: -150% !important; | |
| 1678 | + margin-right: -150% !important; | |
| 1679 | + position: relative; | |
| 1680 | + z-index:5; | |
| 1681 | +} | |
| 1682 | +.article__title.text-center h1 { | |
| 1683 | + padding-left: 37.5555%; | |
| 1684 | + padding-right: 40%; | |
| 1685 | + padding-bottom: 125px; | |
| 1686 | + padding-top: 100px; | |
| 1687 | + font-size: 40px; | |
| 1688 | +} | |
| 1689 | + | |
| 1690 | +.vc_row.HeroNoPadding [class*="col-"] { | |
| 1691 | + padding-left: 0 !important; | |
| 1692 | + padding-right: 0 !important; | |
| 1693 | + margin-left: 0px; | |
| 1694 | + margin-right: 0px; | |
| 1695 | +} | |
| 1696 | + | |
| 1697 | +.article__title.text-center { | |
| 1698 | + text-align: left; | |
| 1699 | +} | |
| 1700 | + | |
| 1701 | +.nowrap { | |
| 1702 | + white-space: nowrap; | |
| 1703 | +} | |
| 1704 | + | |
| 1705 | +/*job listing*/ | |
| 1706 | +.load_more_jobs strong { | |
| 1707 | + font-size: 20px; | |
| 1708 | + color: black; | |
| 1709 | + font-weight: bold ; | |
| 1710 | +} | |
| 1711 | + | |
| 1712 | + | |
| 1713 | +/*home page hero*/ | |
| 1714 | +.hero-video::after { | |
| 1715 | + content: ""; | |
| 1716 | + position: absolute; | |
| 1717 | + inset: 0; | |
| 1718 | + background: linear-gradient( | |
| 1719 | + to bottom, | |
| 1720 | + rgba(230, 159, 67, 0.3) 0%, | |
| 1721 | + rgba(74, 39, 133, 0.8) 90% | |
| 1722 | + ); | |
| 1723 | + z-index: 1; | |
| 1724 | + pointer-events: none; | |
| 1725 | +} | |
| 1726 | + | |
| 1727 | +a.su-button.su-button-style-flat.hero-btn{ | |
| 1728 | + border: 4px solid #34ACAA !important; | |
| 1729 | +} | |
| 1730 | + | |
| 1731 | +a.su-button.su-button-style-flat.hero-btn:hover{ | |
| 1732 | + background-color: #ffffff !important; | |
| 1733 | +} | |
| 1734 | +a.su-button.su-button-style-flat { | |
| 1735 | + transition: background-color 0.3s ease; | |
| 1736 | +} | |
| 1737 | +a.su-button.su-button-style-flat span { | |
| 1738 | + transition: color 0.3s ease; | |
| 1739 | +} | |
| 1740 | +a.su-button.su-button-style-flat.hero-btn:hover span{ | |
| 1741 | + color: #34ACAA !important; | |
| 1742 | +} | |
| 1743 | + | |
| 1744 | + | |
| 1745 | +/*search*/ | |
| 1746 | +.job_filters { | |
| 1747 | + background-color: transparent; | |
| 1748 | + border: none; | |
| 1749 | +} | |
| 1750 | + | |
| 1751 | +.job_filters label { | |
| 1752 | + font-weight: bold; | |
| 1753 | +} | |
| 1754 | + | |
| 1755 | +.job_filters input[type="text"], | |
| 1756 | +.job_filters input[type="number"] { | |
| 1757 | + width: 100%; | |
| 1758 | + padding: 10px; | |
| 1759 | + border: 1px solid #ccc; | |
| 1760 | + border-radius: 3px; | |
| 1761 | +} | |
| 1762 | + | |
| 1763 | +.job_filters input[type="submit"] { | |
| 1764 | + background-color: #0032FF; | |
| 1765 | + color: #fff; | |
| 1766 | + padding: 10px 20px; | |
| 1767 | + border: none; | |
| 1768 | + border-radius: 3px; | |
| 1769 | + cursor: pointer; | |
| 1770 | +} | |
| 1771 | + | |
| 1772 | +.job_filters input[type="submit"]:hover { | |
| 1773 | + background-color: #0022CC; | |
| 1774 | +} | |
| 1775 | + | |
| 1776 | +.job_filters .job_types li{ | |
| 1777 | + padding-left:0px | |
| 1778 | +} | |
| 1779 | + | |
| 1780 | + | |
| 1781 | +ul.job_types li { | |
| 1782 | + list-style: none !IMPORTANT; | |
| 1783 | +} | |
| 1784 | +.input-select { | |
| 1785 | + display: none; | |
| 1786 | +} | |
| 1787 | +.rss_link { | |
| 1788 | + display: none; | |
| 1789 | +} | |
| 1790 | +.alignnone { | |
| 1791 | + width: 100%; | |
| 1792 | + height: auto; | |
| 1793 | +} | |
| 1794 | + | |
| 1795 | +.wpcf7-checkbox .wpcf7-list-item { | |
| 1796 | + display: inline-block; | |
| 1797 | + width: 31%; | |
| 1798 | + box-sizing: border-box; | |
| 1799 | + vertical-align: top; | |
| 1800 | + margin-top:20px; | |
| 1801 | +} | |
| 1802 | +.wpcf7-checkbox .wpcf7-list-item:nth-child(3n) { | |
| 1803 | + clear: both; | |
| 1804 | +} | |
| 1805 | + | |
| 1806 | + | |
| 1807 | +/* home page bsl special */ | |
| 1808 | +.custom-checklist { | |
| 1809 | + list-style: none; | |
| 1810 | + padding: 0; | |
| 1811 | + margin: 30px 0 0 0 !important; | |
| 1812 | +} | |
| 1813 | + | |
| 1814 | +.custom-checklist li { | |
| 1815 | + display: flex; | |
| 1816 | + align-items: flex-start; | |
| 1817 | + margin-left: 0px !important; | |
| 1818 | + font-size: 19px; | |
| 1819 | + color: #16375E; | |
| 1820 | +} | |
| 1821 | + | |
| 1822 | +.check-icon { | |
| 1823 | + flex-shrink: 0; | |
| 1824 | + margin-right: 10px; | |
| 1825 | + margin-top: -3px; | |
| 1826 | +} | |
| 1827 | + | |
| 1828 | +.button-row { | |
| 1829 | + display: flex; | |
| 1830 | + gap: 30px; | |
| 1831 | + justify-content: center; | |
| 1832 | + flex-wrap: wrap; | |
| 1833 | +} | |
| 1834 | + | |
| 1835 | +.custom-button { | |
| 1836 | + display: flex; | |
| 1837 | + align-items: center; | |
| 1838 | + gap: 16px; | |
| 1839 | + border: 3px solid #0d2f5a; | |
| 1840 | + background-color: #0d2f5a; | |
| 1841 | + color: white; | |
| 1842 | + padding: 20px 25px; | |
| 1843 | + border-radius: 50px; | |
| 1844 | + text-decoration: none; | |
| 1845 | + font-weight: bold; | |
| 1846 | + font-size: 18px; | |
| 1847 | + font-family: sans-serif; | |
| 1848 | + min-width: 280px; | |
| 1849 | + justify-content: flex-start; | |
| 1850 | +} | |
| 1851 | + | |
| 1852 | +.custom-button:hover { | |
| 1853 | + background-color:rgba(256, 256, 256, 0); | |
| 1854 | + color: #0d2f5a; | |
| 1855 | +} | |
| 1856 | +.custom-button .icon { | |
| 1857 | + display: flex; | |
| 1858 | + align-items: center; | |
| 1859 | + justify-content: center; | |
| 1860 | +} | |
| 1861 | + | |
| 1862 | +.custom-button svg { | |
| 1863 | + height: 50px; | |
| 1864 | + min-width: 50px; | |
| 1865 | +} | |
| 1866 | + | |
| 1867 | +.custom-button .text { | |
| 1868 | + line-height: 1.3; | |
| 1869 | + text-align: left; | |
| 1870 | + color: #fff; | |
| 1871 | + font-size: 25px; | |
| 1872 | +} | |
| 1873 | +.custom-button:hover .text { | |
| 1874 | + color: #0d2f5a; | |
| 1875 | +} | |
| 1876 | + | |
| 1877 | +.button-row-bckground { | |
| 1878 | + background: linear-gradient( | |
| 1879 | + to bottom, | |
| 1880 | + rgba(230, 159, 67, 0.2) 25%, | |
| 1881 | + rgb(51, 46, 116, 0.2) 100% | |
| 1882 | + ); | |
| 1883 | +} | |
| 1884 | + | |
| 1885 | +.banner { | |
| 1886 | + margin: 0; | |
| 1887 | + background-color: #17355f; | |
| 1888 | +} | |
| 1889 | +.banner-container { | |
| 1890 | + display: flex; | |
| 1891 | + align-items: center; | |
| 1892 | + justify-content: center; | |
| 1893 | + padding: 60px 100px 60px 60px !important; | |
| 1894 | +} | |
| 1895 | +.home-chezNous-section img{ | |
| 1896 | + border-radius:15px; | |
| 1897 | +} | |
| 1898 | +.home-chezNous-section { | |
| 1899 | + position: relative; | |
| 1900 | + text-align: right; | |
| 1901 | + font-weight: bold; | |
| 1902 | + display: inline-block; | |
| 1903 | + margin: 0; | |
| 1904 | + height: auto; | |
| 1905 | + } | |
| 1906 | +.home-chezNous-section .chezNous-btns { | |
| 1907 | + position: absolute; | |
| 1908 | + bottom: 50%; | |
| 1909 | + left: 65%; | |
| 1910 | + width: 100%; | |
| 1911 | + text-align: center; | |
| 1912 | + width: auto; | |
| 1913 | +} | |
| 1914 | +.home-chezNous-section .chezNous-btn { | |
| 1915 | + color: #F67E4A; | |
| 1916 | + background: #fff; | |
| 1917 | + border: 3px solid #fff; | |
| 1918 | + padding: 7px; | |
| 1919 | + font-size: 35px; | |
| 1920 | + border-radius:10px; | |
| 1921 | + font-weight: 900; | |
| 1922 | + box-shadow: -4px 6px 0px 0px #C2653C; | |
| 1923 | +} | |
| 1924 | +.home-chezNous-section .chezNous-btn:hover { | |
| 1925 | + border: 3px solid #fff; | |
| 1926 | + background: #F67E4A; | |
| 1927 | + color: white; | |
| 1928 | +} | |
| 1929 | +.chezNous-btns a { | |
| 1930 | + display: inline-block; | |
| 1931 | + text-decoration: none; | |
| 1932 | +} | |
| 1933 | +.chezNous-link { | |
| 1934 | + margin-top: 20px; | |
| 1935 | + display: inline-block; | |
| 1936 | + color: #fff !important; | |
| 1937 | + font-weight: normal; | |
| 1938 | + font-size: 20px; | |
| 1939 | +} | |
| 1940 | +.chezNous-link:hover { | |
| 1941 | + text-decoration: underline; | |
| 1942 | + font-weight:bold; | |
| 1943 | +} | |
| 1944 | + | |
| 1945 | +.banner-container div:has(.home-chezNous-section) { | |
| 1946 | + text-align: center; | |
| 1947 | +} | |
| 1948 | +.chezNous-autre { | |
| 1949 | + background: white !important; | |
| 1950 | + border-radius:15px; | |
| 1951 | + display: flex; | |
| 1952 | + align-items: center; | |
| 1953 | + margin-left: -60px; | |
| 1954 | +} | |
| 1955 | +.banner-container.vc_row { | |
| 1956 | + display: flex; | |
| 1957 | + align-items: stretch; | |
| 1958 | +} | |
| 1959 | +.vc_col-has-fill>.vc_column-inner, .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_vc_row>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_vc_row_inner>.vc_row>.vc_vc_column_inner>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_vc_column_inner>.vc_column_container>.vc_column-inner, .vc_section.vc_section-has-fill, .vc_section.vc_section-has-fill+.vc_row-full-width+.vc_section, .vc_section.vc_section-has-fill+.vc_section{ | |
| 1960 | + padding-top: 0px; | |
| 1961 | +} | |
| 1962 | + | |
| 1963 | +/*footer*/ | |
| 1964 | +.footer-t { | |
| 1965 | + color:#fff !important; | |
| 1966 | + font-weight: bold !important; | |
| 1967 | + font-size: 30px ; | |
| 1968 | +} | |
| 1969 | +.footer a { | |
| 1970 | + color:#fff !important; | |
| 1971 | +} | |
| 1972 | + | |
| 1973 | +.footer-with-b { | |
| 1974 | + display: flex; | |
| 1975 | + flex-direction: column; | |
| 1976 | + align-items: flex-start; | |
| 1977 | + gap: 0px; | |
| 1978 | +} | |
| 1979 | + | |
| 1980 | +.footer-b { | |
| 1981 | + display: inline-block; | |
| 1982 | + padding: 12px 30px; | |
| 1983 | + color: white !important; | |
| 1984 | + border: 2px solid white; | |
| 1985 | + border-radius: 10px; | |
| 1986 | + text-decoration: none; | |
| 1987 | + font-weight: bold; | |
| 1988 | + background: transparent; | |
| 1989 | + transition: background 0.3s, color 0.3s; | |
| 1990 | + text-align: center; | |
| 1991 | + min-width: 230px; | |
| 1992 | + font-size: 20px; | |
| 1993 | +} | |
| 1994 | +.footer-b:hover { | |
| 1995 | + background: white; | |
| 1996 | + color: #2b546b !important; | |
| 1997 | +} | |
| 1998 | + | |
| 1999 | +.left-section a{ | |
| 2000 | + color: #fff !important; | |
| 2001 | + font-size: 23px; | |
| 2002 | +} | |
| 2003 | +.left-section a:hover{ | |
| 2004 | + color: #0067a5 !important; | |
| 2005 | +} | |
| 2006 | + a.footer-t:hover{ | |
| 2007 | + color: #95F0FE !important; | |
| 2008 | +} | |
| 2009 | +/* home-job card */ | |
| 2010 | +.home-jobs .job-listing-wrapper { | |
| 2011 | + overflow-x: auto; | |
| 2012 | + overflow-y: hidden; | |
| 2013 | + white-space: nowrap; | |
| 2014 | + padding-bottom: 20px; | |
| 2015 | + scrollbar-width: none; | |
| 2016 | +} | |
| 2017 | +.home-jobs .job-listing-wrapper::-webkit-scrollbar { | |
| 2018 | + display: none; /* Chrome, Safari */ | |
| 2019 | +} | |
| 2020 | +.home-jobs .job_listings { | |
| 2021 | + display: flex; | |
| 2022 | + flex-wrap: nowrap; | |
| 2023 | + gap: 20px; | |
| 2024 | + list-style: none; | |
| 2025 | + padding: 0; | |
| 2026 | + margin: 5px; | |
| 2027 | +} | |
| 2028 | +.home-jobs .job-card { | |
| 2029 | + background:#C6C6B845; | |
| 2030 | + border-radius: 10px; | |
| 2031 | + box-shadow: 0 4px 15px rgba(0,0,0,0.05); | |
| 2032 | + padding: 40px 20px; | |
| 2033 | + width: 300px; | |
| 2034 | + min-width: 325px; | |
| 2035 | + min-height: 420px; | |
| 2036 | + white-space: normal; | |
| 2037 | + display: flex; | |
| 2038 | + flex-direction: column; | |
| 2039 | + justify-content: space-between; | |
| 2040 | +} | |
| 2041 | + | |
| 2042 | +.home-jobs .job-card:hover{ | |
| 2043 | + background:#0067a5; | |
| 2044 | +} | |
| 2045 | +.home-jobs .job-listing-link-button{ | |
| 2046 | + background: transparent; | |
| 2047 | + border: 2px solid #7CAFDE !important; | |
| 2048 | + color: #7CAFDE; | |
| 2049 | + text-align: center; | |
| 2050 | + border-radius: 10px; | |
| 2051 | + margin: 0 120px 0 0!important; | |
| 2052 | + padding: 5px!important; | |
| 2053 | + font-size: 19px; | |
| 2054 | +} | |
| 2055 | +.home-jobs .job-card:hover .job-listing-link-button { | |
| 2056 | + background-color: transparent; | |
| 2057 | + color: white; | |
| 2058 | + border-color:#fff !important; | |
| 2059 | +} | |
| 2060 | + | |
| 2061 | + | |
| 2062 | +.home-jobs .job-title h3 { | |
| 2063 | + font-size: 23px; | |
| 2064 | + color: #000; | |
| 2065 | + margin-bottom: 15px; | |
| 2066 | + font-weight: bolder; | |
| 2067 | +} | |
| 2068 | +.home-jobs .job-card:hover .job-title h3{ | |
| 2069 | + color:#fff; | |
| 2070 | +} | |
| 2071 | +.home-jobs .job-type-location span { | |
| 2072 | + display: flex; | |
| 2073 | + align-items: center; | |
| 2074 | + gap: 8px; | |
| 2075 | + color: #000; | |
| 2076 | + font-weight:bolder; | |
| 2077 | + margin-bottom: 8px; | |
| 2078 | + font-size: 20px; | |
| 2079 | + line-height: 18px; | |
| 2080 | + min-height:40px; | |
| 2081 | +} | |
| 2082 | +.home-jobs .job-type-location{ | |
| 2083 | + border-top:1px solid #7cafde; | |
| 2084 | +} | |
| 2085 | +.home-jobs .job-card:hover .job-type-location span{ | |
| 2086 | + color:#fff; | |
| 2087 | +} | |
| 2088 | +.home-jobs .job-type-location span.apply-button{ | |
| 2089 | + min-height:10px; | |
| 2090 | +} | |
| 2091 | +.home-jobs ul.job_listings li.job_listing, .home-jobs ul.job_listings { | |
| 2092 | + border: none !important; | |
| 2093 | +} | |
| 2094 | +ul.job_listings li.job_listing a{ | |
| 2095 | + padding: 0 ; | |
| 2096 | +} | |
| 2097 | +ul.job_listings li.job_listing a:hover{ | |
| 2098 | + background:transparent; | |
| 2099 | +} | |
| 2100 | +.home-jobs .job-type-location i { | |
| 2101 | + color: #000; | |
| 2102 | + display:none; | |
| 2103 | +} | |
| 2104 | +.home-jobs .job-listing-link { | |
| 2105 | + text-decoration: none; | |
| 2106 | + color: inherit; | |
| 2107 | +} | |
| 2108 | +.home-jobs .nav-btn { | |
| 2109 | + background: none; | |
| 2110 | + border:none; | |
| 2111 | + border: none; | |
| 2112 | + padding: 0; | |
| 2113 | + cursor: pointer; | |
| 2114 | + transition: transform 0.2s ease; | |
| 2115 | +} | |
| 2116 | +.home-jobs .nav-btn svg circle { | |
| 2117 | + transition: fill 0.3s ease, stroke 0.3s ease; | |
| 2118 | +} | |
| 2119 | +.home-jobs .nav-btn svg path { | |
| 2120 | + transition: stroke 0.3s ease; | |
| 2121 | +} | |
| 2122 | + | |
| 2123 | +.home-jobs .nav-btn:hover svg path { | |
| 2124 | + stroke: white; | |
| 2125 | +} | |
| 2126 | +.home-jobs .nav-btns { | |
| 2127 | + text-align: right; | |
| 2128 | +} | |
| 2129 | +.toutes-offres{ | |
| 2130 | + text-align: center; | |
| 2131 | + border: 2px solid #2b546b; | |
| 2132 | + color: #2b546b; | |
| 2133 | + padding: 0px 5px; | |
| 2134 | + border-radius: 35px; | |
| 2135 | +} | |
| 2136 | +.toutes-offres:hover{ | |
| 2137 | + background:#2b546b; | |
| 2138 | +} | |
| 2139 | +.toutes-offres a{ | |
| 2140 | + color:#2b546b; | |
| 2141 | + font-weight: bold; | |
| 2142 | + font-size:19px; | |
| 2143 | + line-height: 25px; | |
| 2144 | + display: inline-block; | |
| 2145 | + margin-top:4px; | |
| 2146 | + width:100%; | |
| 2147 | +} | |
| 2148 | +.toutes-offres:hover a{ | |
| 2149 | + color:#fff; | |
| 2150 | +} | |
| 2151 | +.home-jobs .wpb_wrapper:has(.wpb_wrapper .toutes-offres){ | |
| 2152 | + min-height:420px; | |
| 2153 | + white-space: normal; | |
| 2154 | + display: flex; | |
| 2155 | + flex-direction: column; | |
| 2156 | + justify-content: space-between; | |
| 2157 | +} | |
| 2158 | + | |
| 2159 | +div.wpcf7[data-wpcf7-id="4890"] .wpcf7-not-valid:not(input){ | |
| 2160 | + border: 0px; | |
| 2161 | +} | |
| 2162 | +div.wpcf7 .wpcf7-not-valid::before{ | |
| 2163 | + content: "Ce champ est requis.\A\A"; | |
| 2164 | + color: red; | |
| 2165 | + font-weight: bold; | |
| 2166 | + white-space: pre-line; | |
| 2167 | +} | |
| 2168 | + | |
| 2169 | +.wpcf7-form-control.wpcf7-text, | |
| 2170 | +.wpcf7-form-control.wpcf7-email { | |
| 2171 | + width: 100%; | |
| 2172 | + border-radius: 10px; | |
| 2173 | +} | |
| 2174 | + | |
| 2175 | +a[href*="desabonnement"], | |
| 2176 | +a[href*="désabonnement"] { | |
| 2177 | + display: inline-block; | |
| 2178 | + margin-top: 15px; | |
| 2179 | + color: #1e88e5; | |
| 2180 | + font-size: 14px; | |
| 2181 | + text-decoration: underline; | |
| 2182 | +} | |
| 2183 | + | |
| 2184 | +a[href*="desabonnement"]:hover { | |
| 2185 | + text-decoration: none; | |
| 2186 | +} | |
| 2187 | + | |
| 2188 | +@media (min-width: 992px) { | |
| 2189 | + .footer-6 .col-md-4:first-of-type { | |
| 2190 | + width: 45%; | |
| 2191 | + } | |
| 2192 | + .footer-6 .col-md-4:not(:first-of-type) { | |
| 2193 | + width: 27.5%; | |
| 2194 | + } | |
| 2195 | +} | |
| 2196 | + | |
| 2197 | +@media (min-width: 765px) { | |
| 2198 | + .footer-6 .col-md-4:first-of-type { | |
| 2199 | + border-right:2px solid white; | |
| 2200 | + } | |
| 2201 | +} | |
| 2202 | +.conditions-de-travail { | |
| 2203 | + display: flex; | |
| 2204 | + flex-direction: column; | |
| 2205 | + font-size: 16px; | |
| 2206 | + margin-bottom: 1.5rem; | |
| 2207 | +} | |
| 2208 | + | |
| 2209 | +.ct-row { | |
| 2210 | + display: flex; | |
| 2211 | + gap: 20px; | |
| 2212 | +} | |
| 2213 | + | |
| 2214 | +.ct-label { | |
| 2215 | + width: 300px; | |
| 2216 | + font-weight: bold; | |
| 2217 | + color:#000; | |
| 2218 | + font-size:19px; | |
| 2219 | +} | |
| 2220 | + | |
| 2221 | +.ct-value { | |
| 2222 | + font-size:19px; | |
| 2223 | + color: #000000; | |
| 2224 | +} | |
| 2225 | + | |
| 2226 | +.informations-de-base { | |
| 2227 | + display: flex; | |
| 2228 | + flex-wrap: wrap; | |
| 2229 | + gap: 25px; | |
| 2230 | + align-items: center; | |
| 2231 | + margin-bottom: 1.5rem; | |
| 2232 | + background: #16375E10 ; | |
| 2233 | + width: 300%; | |
| 2234 | + margin-left: -100%; | |
| 2235 | + padding-left: 100%; | |
| 2236 | + padding-top: 15px; | |
| 2237 | + padding-bottom: 15px; | |
| 2238 | +} | |
| 2239 | + | |
| 2240 | +.informations-de-base .info-item { | |
| 2241 | + display: flex; | |
| 2242 | + align-items: center; | |
| 2243 | + gap: 10px; | |
| 2244 | +} | |
| 2245 | + | |
| 2246 | +.informations-de-base .icon svg { | |
| 2247 | + display: inline-block; | |
| 2248 | + vertical-align: middle; | |
| 2249 | +} | |
| 2250 | + | |
| 2251 | +.informations-de-base .info-text { | |
| 2252 | + font-size: 16px; | |
| 2253 | + color: #16375e; | |
| 2254 | + padding-top: 12px; | |
| 2255 | +} | |
| 2256 | + | |
| 2257 | +.apply-buttons { | |
| 2258 | + display: flex; | |
| 2259 | + justify-content: space-between; | |
| 2260 | + flex-wrap: wrap; | |
| 2261 | + gap: 0px; | |
| 2262 | + margin-top: 70px; | |
| 2263 | + width: 300%; | |
| 2264 | + margin-left: -100%; | |
| 2265 | + padding: 30px 100% 200px 100%; | |
| 2266 | + margin-bottom:-170px; | |
| 2267 | +} | |
| 2268 | +.apply-buttons-1 h2, | |
| 2269 | +.apply-buttons-2 h2 { | |
| 2270 | + color: #004071; | |
| 2271 | + font-size: 18px; | |
| 2272 | + font-weight: bold; | |
| 2273 | +} | |
| 2274 | +.apply-buttons-2 h2 { | |
| 2275 | + margin-bottom: 27px; | |
| 2276 | +} | |
| 2277 | +.apply-buttons .application_button.button { | |
| 2278 | + background-color: #004071; | |
| 2279 | + color: #fff; | |
| 2280 | + border: 2px solid #004071; | |
| 2281 | + border-radius: 5px; | |
| 2282 | + font-weight: bold; | |
| 2283 | + font-size: 20px; | |
| 2284 | + width:fit-content; | |
| 2285 | + height:min-content; | |
| 2286 | + padding:9px 25px; | |
| 2287 | + box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3); | |
| 2288 | + margin-bottom:10px; | |
| 2289 | +} | |
| 2290 | +.apply-buttons .application_button.button:hover { | |
| 2291 | + background-color: transparent; | |
| 2292 | + color: #004071; | |
| 2293 | +} | |
| 2294 | + | |
| 2295 | +.apply-buttons .apply-buttons-2 a { | |
| 2296 | + background-color: #004071; | |
| 2297 | + color: #fff; | |
| 2298 | + border: 2px solid #004071; | |
| 2299 | + border-radius: 5px; | |
| 2300 | + font-weight: bold; | |
| 2301 | + font-size: 20px; | |
| 2302 | + padding: 5px 15px; | |
| 2303 | + box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3); | |
| 2304 | +} | |
| 2305 | +.apply-buttons .apply-buttons-2 a:hover { | |
| 2306 | + background-color: transparent; | |
| 2307 | + color: #004071; | |
| 2308 | +} | |
| 2309 | +.job-manager-single-alert-link{ | |
| 2310 | + margin-top: -150px; | |
| 2311 | +} | |
| 2312 | +.job-manager-single-alert-link a{ | |
| 2313 | + color: #57b4b0; | |
| 2314 | + font-weight: 600; | |
| 2315 | +} | |
| 2316 | +.job-manager-single-alert-link a:hover{ | |
| 2317 | + color: #F67E4A; | |
| 2318 | +} | |
| 2319 | +.single-job_listing section{ | |
| 2320 | + padding-bottom: 40px !important; | |
| 2321 | +} | |
| 2322 | + | |
| 2323 | +.liste-jobs-tout ul.job_listings{ | |
| 2324 | + border-top: none !important; | |
| 2325 | + padding: 10px 7% 50px ; | |
| 2326 | + border: none !important; | |
| 2327 | + background:#c6c6b830; | |
| 2328 | +} | |
| 2329 | + | |
| 2330 | +.liste-jobs-tout h2{ | |
| 2331 | + width: 300%; | |
| 2332 | + margin-left: -100%; | |
| 2333 | + padding: 40px 100% 20px 100%; | |
| 2334 | + background: #EFF2F4; | |
| 2335 | + margin-bottom: 0px; | |
| 2336 | + margin-top: -60px; | |
| 2337 | + font-size: 35px; | |
| 2338 | +} | |
| 2339 | + | |
| 2340 | +.liste-jobs-tout .job_filters .showing_jobs{ | |
| 2341 | + border-top: none; | |
| 2342 | +} | |
| 2343 | + | |
| 2344 | +.liste-jobs-tout .job-type-location { | |
| 2345 | + display: flex; | |
| 2346 | + flex-wrap: nowrap; | |
| 2347 | + align-items: center; | |
| 2348 | +} | |
| 2349 | +.liste-jobs-tout .job-listing-link-button { | |
| 2350 | + margin-left: auto; | |
| 2351 | + background: transparent; | |
| 2352 | + border: 2px solid #004071 !important; | |
| 2353 | + color: #004071; | |
| 2354 | + border-radius: 5px; | |
| 2355 | + margin-bottom: 20px; | |
| 2356 | + padding: 5px 10px !important; | |
| 2357 | + font-size: 19px; | |
| 2358 | +} | |
| 2359 | + | |
| 2360 | +.liste-jobs-tout .job-listing-link-button:hover, .liste-jobs-tout .job-listing-link-button:active, .liste-jobs-tout .job-listing-link-button:focus{ | |
| 2361 | + background: #004071; | |
| 2362 | + color: #fff; | |
| 2363 | +} | |
| 2364 | +.liste-jobs-tout .job-title h3 { | |
| 2365 | + font-size: 25px; | |
| 2366 | + margin-top: 20px; | |
| 2367 | + color: #004071; | |
| 2368 | + font-weight: bold; | |
| 2369 | + max-width: 55vw; | |
| 2370 | +} | |
| 2371 | + | |
| 2372 | +.liste-jobs-tout ul.job_listings li.job_listing { | |
| 2373 | + padding: 0px 10px 10px 0px ; | |
| 2374 | + border-bottom: 1px solid #16375E20; | |
| 2375 | +} | |
| 2376 | +.liste-jobs-tout .search_jobs{ | |
| 2377 | + width: 300%; | |
| 2378 | + margin-left: -100%; | |
| 2379 | + padding: 30px 107% 30px; | |
| 2380 | + background:#7cafde82 | |
| 2381 | +} | |
| 2382 | +.liste-jobs-tout .job_types{ | |
| 2383 | + margin-top: -50px; | |
| 2384 | + width: 300%; | |
| 2385 | + margin-left: -100%; | |
| 2386 | + padding: 0 107% 0 !important; | |
| 2387 | +} | |
| 2388 | + | |
| 2389 | +.liste-jobs-tout .showing_jobs{ | |
| 2390 | + width: 300%; | |
| 2391 | + margin-left: -100%; | |
| 2392 | + margin-top:10px; | |
| 2393 | + padding: 0 107% 0; | |
| 2394 | +} | |
| 2395 | +.liste-jobs-tout .search_submit input{ | |
| 2396 | + background: #004071 !important; | |
| 2397 | + border: 2px solid #004071; | |
| 2398 | + color: #fff !important; | |
| 2399 | + margin-right: 10px; | |
| 2400 | + border-radius: 5px; | |
| 2401 | + width: auto; | |
| 2402 | + height:auto; | |
| 2403 | + padding:0px 10px !important; | |
| 2404 | + font-size:19px; | |
| 2405 | +} | |
| 2406 | +.liste-jobs-tout .search_submit input:hover{ | |
| 2407 | + background:#fff !important; | |
| 2408 | + color: #004071 !important; | |
| 2409 | +} | |
| 2410 | + | |
| 2411 | +.job_listing-template-default.single-job_listing div.main-container div.container div.col-sm-10.col-md-8.col-sm-offset-1.col-md-offset-2{ | |
| 2412 | + margin-left:0px; | |
| 2413 | + margin-right:0px; | |
| 2414 | + width: auto; | |
| 2415 | +} | |
| 2416 | + | |
| 2417 | +.boxed.boxed--lg.border--round.bg--white:has(.cat-hero-text){ | |
| 2418 | + background: none; | |
| 2419 | + padding-left: 0px; | |
| 2420 | + padding-right: 0px; | |
| 2421 | + padding-bottom: 0px; | |
| 2422 | + margin-top: 5vh; | |
| 2423 | + margin-bottom: 0px; | |
| 2424 | + min-width: 100vw; | |
| 2425 | + min-height: 15vh; | |
| 2426 | +} | |
| 2427 | +.cat-hero-s-text{ | |
| 2428 | + color: #ffffff !important; | |
| 2429 | + font-size: 35px; | |
| 2430 | + line-height:100px; | |
| 2431 | +} | |
| 2432 | +.cat-hero-b-text{ | |
| 2433 | + color: #ffffff !important; | |
| 2434 | + font-size: 50px; | |
| 2435 | + line-height: 50px; | |
| 2436 | + font-weight: bold; | |
| 2437 | +} | |
| 2438 | +.col-md-10.col-md-offset-1.col-sm-12:has(.cat-hero-text){ | |
| 2439 | + margin-left: 0px; | |
| 2440 | +} | |
| 2441 | + | |
| 2442 | +footer::after { | |
| 2443 | + content: "© Gouvernement du Québec - 2025"; | |
| 2444 | + display: block; | |
| 2445 | + text-align: center; | |
| 2446 | + background-color: #fff; | |
| 2447 | + background-image: url('https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/06/logo_chum.png'); | |
| 2448 | + background-repeat: no-repeat; | |
| 2449 | + background-position: center 20px; | |
| 2450 | + background-size: 95px auto; | |
| 2451 | + padding-top: 100px; | |
| 2452 | + padding-bottom: 10px; | |
| 2453 | + font-size: 14px; | |
| 2454 | + font-weight: 500; | |
| 2455 | + margin-top: 30px; | |
| 2456 | + margin-bottom:-25px; | |
| 2457 | + padding-left: 40px; | |
| 2458 | + padding-right: 40px; | |
| 2459 | + white-space: pre-line; | |
| 2460 | + position: relative; | |
| 2461 | +} | |
| 2462 | + | |
| 2463 | +.job-manager-single-alert-link{ | |
| 2464 | + display: none; | |
| 2465 | +} | |
| 2466 | + | |
| 2467 | +@media only screen and (max-width: 600px) { | |
| 2468 | + .liste-jobs-tout h2{ | |
| 2469 | + margin-top: -160px; | |
| 2470 | + } | |
| 2471 | + .single-job_listing .a2a_kit::before { | |
| 2472 | + content: 'Partager\A' !important; | |
| 2473 | + white-space:pre-line !important; | |
| 2474 | + } | |
| 2475 | + .single-job_listing .a2a_kit{ | |
| 2476 | + display: block !important; | |
| 2477 | + } | |
| 2478 | + .apply-buttons .application_button.button{ | |
| 2479 | + min-width:175px; | |
| 2480 | + } | |
| 2481 | + .conditions-de-travail { | |
| 2482 | + display: block; | |
| 2483 | + } | |
| 2484 | + .ct-row { | |
| 2485 | + display: block; | |
| 2486 | + } | |
| 2487 | + .ct-value::before { | |
| 2488 | + content:'\A'; | |
| 2489 | + white-space:pre-line; | |
| 2490 | + } | |
| 2491 | + .job_description { | |
| 2492 | + font-size: 16px; | |
| 2493 | + } | |
| 2494 | + .single_job_listing .job_description h2 { | |
| 2495 | + padding-top: 10px; | |
| 2496 | + } | |
| 2497 | + .informations-de-base { | |
| 2498 | + display:block; | |
| 2499 | + } | |
| 2500 | + .article__title.text-center h1 { | |
| 2501 | + font-size: 17px; | |
| 2502 | + padding-bottom:170px; | |
| 2503 | + height:36vh; | |
| 2504 | + } | |
| 2505 | + .liste-jobs-tout .job-listing-link span { | |
| 2506 | + display:block; | |
| 2507 | + margin: 10px 0; | |
| 2508 | + padding:0px; | |
| 2509 | + font-size:16px !important; | |
| 2510 | + line-height:20px; | |
| 2511 | + } | |
| 2512 | + .liste-jobs-tout ul.job_listings li.job_listing a.job-listing-link-button{ | |
| 2513 | + margin-top:5px; | |
| 2514 | + margin-bottom:2px; | |
| 2515 | + text-align: center; | |
| 2516 | + } | |
| 2517 | + .liste-jobs-tout .job-type-location{ | |
| 2518 | + display: block; | |
| 2519 | + } | |
| 2520 | + .liste-jobs-tout .job-listing-link span { | |
| 2521 | + display: flex; | |
| 2522 | + align-items: flex-start; | |
| 2523 | + gap: 6px; | |
| 2524 | + } | |
| 2525 | + .liste-jobs-tout .job-type-location .job-type{ | |
| 2526 | + margin-right:0px; | |
| 2527 | + } | |
| 2528 | + .liste-jobs-tout ul.job_listings li.job_listing a{ | |
| 2529 | + min-width: 100%; | |
| 2530 | + } | |
| 2531 | + .liste-jobs-tout .job-title h3{ | |
| 2532 | + max-width: 100% !important; | |
| 2533 | + font-size:18px; | |
| 2534 | + } | |
| 2535 | + .liste-jobs-tout .job_types { | |
| 2536 | + margin-top: 0px !important; | |
| 2537 | + background-color:#7cafde82 !important; | |
| 2538 | + } | |
| 2539 | + .image-container .text span { | |
| 2540 | + font-size: 19px; | |
| 2541 | + } | |
| 2542 | + .image-container .text span | |
| 2543 | + .bar .logo { | |
| 2544 | + max-height: 90px; | |
| 2545 | + margin-top: 0.5px; | |
| 2546 | + } | |
| 2547 | + .bar__module a.btn--demo { | |
| 2548 | + width:100%; | |
| 2549 | + } | |
| 2550 | + .hero-text span:nth-child(2) { | |
| 2551 | + line-height: 40px !important; | |
| 2552 | + } | |
| 2553 | + .home-jobs .wpb_wrapper:has(.wpb_wrapper .toutes-offres) { | |
| 2554 | + min-height:170px; | |
| 2555 | + } | |
| 2556 | + .home-jobs .job-title h3 { | |
| 2557 | + font-size: 18px; | |
| 2558 | + } | |
| 2559 | + .home-jobs .job-card { | |
| 2560 | + width: 100px; | |
| 2561 | + min-width: 275px; | |
| 2562 | + min-height: 400px; | |
| 2563 | + } | |
| 2564 | + .home-jobs .job-listing-link-button { | |
| 2565 | + width: 100%; | |
| 2566 | + margin: 0px !important; | |
| 2567 | + padding: 0; | |
| 2568 | + } | |
| 2569 | + .home-jobs .job-type-location span { | |
| 2570 | + font-size: 16px; | |
| 2571 | + } | |
| 2572 | + .home-jobs .job_listings { | |
| 2573 | + gap: 7px; | |
| 2574 | + } | |
| 2575 | + .home-jobs { | |
| 2576 | + padding:0; | |
| 2577 | + } | |
| 2578 | + .home-jobs .wpb_column:has(.job-listing-wrapper){ | |
| 2579 | + margin-left:-30px; | |
| 2580 | + width: 120%; | |
| 2581 | + } | |
| 2582 | + .banner-container { | |
| 2583 | + padding: 10px 0 !important; | |
| 2584 | + } | |
| 2585 | + .home-chezNous-section .chezNous-btns { | |
| 2586 | + bottom: 30%; | |
| 2587 | + left: 57%; | |
| 2588 | + } | |
| 2589 | + .home-chezNous-section .chezNous-btn { | |
| 2590 | + padding: 0px 2px; | |
| 2591 | + font-size: 16px; | |
| 2592 | + font-weight: 900; | |
| 2593 | + } | |
| 2594 | + .temoignage-section{ | |
| 2595 | + margin-left:-30px; | |
| 2596 | + margin-right:-30px; | |
| 2597 | + margin-top:-10px; | |
| 2598 | + } | |
| 2599 | + h2{ | |
| 2600 | + font-size: 22px; | |
| 2601 | + } | |
| 2602 | + .temoignage-section ul li{ | |
| 2603 | + font-size: 16px; | |
| 2604 | + } | |
| 2605 | + .location-n-cat .location-n-cat:has(.search_keywords) { | |
| 2606 | + display: inline; | |
| 2607 | + } | |
| 2608 | + ul.job_types li label { | |
| 2609 | + display: flex; | |
| 2610 | + align-items: flex-start; | |
| 2611 | + } | |
| 2612 | + ul.job_types li input[type="checkbox"] { | |
| 2613 | + margin-top: 0.2em; | |
| 2614 | + margin-right: 0.5em; | |
| 2615 | + flex-shrink: 0; | |
| 2616 | + } | |
| 2617 | + ul.job_types li label::after { | |
| 2618 | + content: ""; | |
| 2619 | + display: block; | |
| 2620 | + } | |
| 2621 | + .liste-jobs-tout .job_filters .showing_jobs span{ | |
| 2622 | + display: inline-block; | |
| 2623 | + line-height: 20px; | |
| 2624 | + padding: 10px 0 1-0px 0; | |
| 2625 | + } | |
| 2626 | + .cat-hero-s-text { | |
| 2627 | + font-size: 20px; | |
| 2628 | + line-height:0; | |
| 2629 | + } | |
| 2630 | + .cat-hero-b-text { | |
| 2631 | + font-size: 25px; | |
| 2632 | + line-height: 30px; | |
| 2633 | + } | |
| 2634 | + .boxed.boxed--lg.border--round.bg--white:has(.cat-hero-text) { | |
| 2635 | + margin-top: 0; | |
| 2636 | + margin-bottom: 20px; | |
| 2637 | + min-width: 50vw; | |
| 2638 | + } | |
| 2639 | + .liste-jobs-tout h2 { | |
| 2640 | + font-size: 25px; | |
| 2641 | + padding-bottom:0px; | |
| 2642 | + } | |
| 2643 | + | |
| 2644 | + .wpcf7-checkbox .wpcf7-list-item { | |
| 2645 | + width: 100%; | |
| 2646 | + } | |
| 2647 | + .wpcf7-form-control.wpcf7-text, .wpcf7-form-control.wpcf7-email { | |
| 2648 | + width: 100%; | |
| 2649 | + } | |
| 2650 | + h1, .h1 { | |
| 2651 | + font-size: 2em; | |
| 2652 | + line-height: 1em; | |
| 2653 | + } | |
| 2654 | +} | |
| 2655 | + | |
| 2656 | +.single-job_listing .a2a_kit svg path { | |
| 2657 | + fill: #004071 !important; | |
| 2658 | +} | |
| 2659 | +.single-job_listing .a2a_kit .a2a_svg { | |
| 2660 | + background: none !important; | |
| 2661 | +} | |
| 2662 | +.single-job_listing .is-partagez { | |
| 2663 | + display: none; | |
| 2664 | +} | |
| 2665 | +.single-job_listing .a2a_kit::before { | |
| 2666 | + content: "Partager "; | |
| 2667 | + margin-right: 8px; | |
| 2668 | + font-size:18px; | |
| 2669 | + font-weight: bold; | |
| 2670 | + color: #8A898A; | |
| 2671 | +} | |
| 2672 | +.single-job_listing .a2a_kit { | |
| 2673 | + display: flex; | |
| 2674 | + justify-content: flex-end; | |
| 2675 | + align-items: center; | |
| 2676 | + margin-right: 100px; | |
| 2677 | +} | |
| 2678 | +.single-job_listing .a2a_button_twitter { | |
| 2679 | + display: none !important; | |
| 2680 | +} | |
| 2681 | +.statut-emploi-TP { | |
| 2682 | + display: none !important; | |
| 2683 | +} | |
| 2684 | +.col-md-11.col-sm-12.text-right.text-left-xs.text-left-sm { | |
| 2685 | + margin-top: -15px !important; | |
| 2686 | + margin-bottom:15px; | |
| 2687 | +} | |
| 2688 | + | |
| 2689 | +.job-info.job-card a:active, .job-info.job-card a:visited, .job-info.job-card a:focus{ | |
| 2690 | + background: transparent !important; | |
| 2691 | +} | |
| 2692 | + | |
| 2693 | +@media screen and (min-width: 600px) and (max-width: 800px) { | |
| 2694 | + .home-jobs .wpb_wrapper:has(.wpb_wrapper .toutes-offres) { | |
| 2695 | + min-height: 200px; | |
| 2696 | + } | |
| 2697 | + | |
| 2698 | + .toutes-offres { | |
| 2699 | + width: 50%; | |
| 2700 | + } | |
| 2701 | + | |
| 2702 | + .toutes-offres a { | |
| 2703 | + width: 50%; | |
| 2704 | + } | |
| 2705 | + .home-chezNous-section .chezNous-btns { | |
| 2706 | + bottom: 45%; | |
| 2707 | + left: 62%; | |
| 2708 | + } | |
| 2709 | + .home-chezNous-section .chezNous-btn { | |
| 2710 | + padding: 0px 2px; | |
| 2711 | + font-size: 25px; | |
| 2712 | + font-weight: 900; | |
| 2713 | + } | |
| 2714 | + .liste-jobs-tout .job_types { | |
| 2715 | + margin-top: 0px !important; | |
| 2716 | + background-color:#7cafde82 !important; | |
| 2717 | + } | |
| 2718 | + .liste-jobs-tout .job-listing-link span { | |
| 2719 | + display: block; | |
| 2720 | + margin: 10px 0; | |
| 2721 | + padding:0px; | |
| 2722 | + font-size:16px !important; | |
| 2723 | + line-height:20px; | |
| 2724 | + } | |
| 2725 | + .liste-jobs-tout ul.job_listings li.job_listing a.job-listing-link-button{ | |
| 2726 | + margin-top:5px; | |
| 2727 | + margin-bottom:2px; | |
| 2728 | + text-align: center; | |
| 2729 | + } | |
| 2730 | + .liste-jobs-tout .job-type-location{ | |
| 2731 | + display: block; | |
| 2732 | + } | |
| 2733 | + .liste-jobs-tout .job-listing-link span { | |
| 2734 | + display: flex; | |
| 2735 | + align-items: flex-start; | |
| 2736 | + gap: 6px; | |
| 2737 | + } | |
| 2738 | + .liste-jobs-tout .job-type-location .job-type{ | |
| 2739 | + margin-right:0px; | |
| 2740 | + } | |
| 2741 | + .liste-jobs-tout ul.job_listings li.job_listing a{ | |
| 2742 | + min-width: 100%; | |
| 2743 | + } | |
| 2744 | + .liste-jobs-tout .job-title h3{ | |
| 2745 | + max-width: 100% !important; | |
| 2746 | + font-size:25px; | |
| 2747 | + } | |
| 2748 | + .liste-jobs-tout .showing_jobs { | |
| 2749 | + margin-top:0px; | |
| 2750 | + } | |
| 2751 | + .wpcf7-checkbox .wpcf7-list-item { | |
| 2752 | + width: 50%; | |
| 2753 | + } | |
| 2754 | + .wpcf7-form-control.wpcf7-text, .wpcf7-form-control.wpcf7-email { | |
| 2755 | + width: 100%; | |
| 2756 | + } | |
| 2757 | +} | |
| 2758 | + | |
| 2759 | +@media (max-width: 768px) { | |
| 2760 | + .cat-hero-text{ | |
| 2761 | + padding-top:40vh !important; | |
| 2762 | + } | |
| 2763 | + .cat-hero-text{ | |
| 2764 | + margin-left: -30px !important; | |
| 2765 | + padding-top: 50px; | |
| 2766 | + } | |
| 2767 | + .right-section { | |
| 2768 | + margin:0px !important; | |
| 2769 | + } | |
| 2770 | + .col-sm-6:first-of-type{ | |
| 2771 | + border-left:0px !important; | |
| 2772 | + } | |
| 2773 | +} | |
| 2774 | + | |
| 2775 | +.elementor hr{ | |
| 2776 | + margin:25px 0px 10px 0px!important; | |
| 2777 | +} | |
| 2778 | +footer:not(.bg--primary):not(.bg--dark) a{ | |
| 2779 | + color:#fff; | |
| 2780 | +} | |
| 2781 | + | |
| 2782 | +.job-list { | |
| 2783 | + list-style: none; | |
| 2784 | + padding: 0; | |
| 2785 | + font-size: 30px; | |
| 2786 | + font-weight: 300; | |
| 2787 | + line-height: 1.6; | |
| 2788 | + } | |
| 2789 | +.right-section { | |
| 2790 | + display: flex; | |
| 2791 | + flex-direction: column; | |
| 2792 | + justify-content: flex-start; | |
| 2793 | + gap: 35px; | |
| 2794 | + margin-left:50px; | |
| 2795 | +} | |
| 2796 | +@media (max-width: 900px) { | |
| 2797 | + .container { | |
| 2798 | + flex-direction: column; | |
| 2799 | + gap: 40px; | |
| 2800 | + } | |
| 2801 | + .left-section, .right-section { | |
| 2802 | + max-width: 100%; | |
| 2803 | + } | |
| 2804 | +} | |
| 2805 | + | |
| 2806 | +.menu-horizontal > .dropdown > .dropdown__trigger::after { | |
| 2807 | + margin-left: 4px; | |
| 2808 | + content: ""; | |
| 2809 | + display: inline-block; | |
| 2810 | + width: 20px; | |
| 2811 | + height: 20px; | |
| 2812 | + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230066b3'%3E%3Cpath d='M12 13.172l4.95-4.95 1.414 1.414L12 16 5.636 9.636l1.414-1.414L12 13.172z'/%3E%3Cpath d='M12 19.172l4.95-4.95 1.414 1.414L12 22 5.636 15.636l1.414-1.414L12 19.172z'/%3E%3C/svg%3E"); | |
| 2813 | + background-size: contain; | |
| 2814 | + background-repeat: no-repeat; | |
| 2815 | +} | |
| 2816 | +.container{ | |
| 2817 | + width:90vw; | |
| 2818 | + margin-left:5vw; | |
| 2819 | +} | |
| 2820 | +.col-sm-6:first-of-type{ | |
| 2821 | + border-right:1px solid white; | |
| 2822 | + | |
| 2823 | +} | |
| 2824 | +@media (min-width: 900px){ | |
| 2825 | + .col-sm-6:first-of-type{ | |
| 2826 | + width:60%; | |
| 2827 | + padding-bottom:100px; | |
| 2828 | + } | |
| 2829 | +} | |
| 2830 | +@media (min-width: 900px) { | |
| 2831 | + .col-sm-6 { | |
| 2832 | + width:40%; | |
| 2833 | + } | |
| 2834 | +} | |
| 2835 | + | |
| 2836 | +.left-section .link a { | |
| 2837 | + line-height: 1.2em; | |
| 2838 | + display: inline-block; | |
| 2839 | +} | |
| 2840 | +.footer-s .link{ | |
| 2841 | + font-size: 20px ; | |
| 2842 | +} | |
| 2843 | +.left-section { | |
| 2844 | + line-height: 2.2em; | |
| 2845 | + display: inline-block; | |
| 2846 | +} | |
| 2847 | + | |
| 2848 | + | |
| 2849 | +.nav-btn { | |
| 2850 | + border: none; | |
| 2851 | +} | |
| 2852 | +@media (max-width: 800px){ | |
| 2853 | + .left-section a { | |
| 2854 | + font-size:15px; | |
| 2855 | + } | |
| 2856 | + .footer-s .link{ | |
| 2857 | + font-size: 15px ; | |
| 2858 | + } | |
| 2859 | + .right-section { | |
| 2860 | + gap:0;} | |
| 2861 | + | |
| 2862 | + .footer-t { | |
| 2863 | + font-size:20px ; | |
| 2864 | + white-space:nowrap; | |
| 2865 | + } | |
| 2866 | + .col-sm-6:first-of-type{ | |
| 2867 | + border:none; | |
| 2868 | + } | |
| 2869 | +} | |
| 2870 | + | |
| 2871 | +@media (max-width: 767px){ | |
| 2872 | +.col-sm-6:first-of-type{ | |
| 2873 | + border:none; | |
| 2874 | + } | |
| 2875 | +} | |
| 2876 | + | |
| 2877 | +@media screen and (min-width: 1024px) and (max-width: 1700px) { | |
| 2878 | + .slider{ | |
| 2879 | + width:500px; | |
| 2880 | + height:400px; | |
| 2881 | + } | |
| 2882 | +} | |
| 2883 | +@media (min-width: 600px) and (max-width: 1300px) { | |
| 2884 | + .article__title.text-center h1 { | |
| 2885 | + padding-bottom: 240px; | |
| 2886 | + font-size: 30px; | |
| 2887 | + } | |
| 2888 | +} | |
| 2889 | +</style> | |
| 2890 | + <!-- Fonts Plugin CSS - https://fontsplugin.com/ --> | |
| 2891 | + <style> | |
| 2892 | + /* Cached: August 19, 2026 at 1:23am */ | |
| 2893 | +/* cyrillic-ext */ | |
| 2894 | +@font-face { | |
| 2895 | + font-family: 'Montserrat'; | |
| 2896 | + font-style: italic; | |
| 2897 | + font-weight: 100; | |
| 2898 | + font-display: swap; | |
| 2899 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2900 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 2901 | +} | |
| 2902 | +/* cyrillic */ | |
| 2903 | +@font-face { | |
| 2904 | + font-family: 'Montserrat'; | |
| 2905 | + font-style: italic; | |
| 2906 | + font-weight: 100; | |
| 2907 | + font-display: swap; | |
| 2908 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2909 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 2910 | +} | |
| 2911 | +/* vietnamese */ | |
| 2912 | +@font-face { | |
| 2913 | + font-family: 'Montserrat'; | |
| 2914 | + font-style: italic; | |
| 2915 | + font-weight: 100; | |
| 2916 | + font-display: swap; | |
| 2917 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2918 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 2919 | +} | |
| 2920 | +/* latin-ext */ | |
| 2921 | +@font-face { | |
| 2922 | + font-family: 'Montserrat'; | |
| 2923 | + font-style: italic; | |
| 2924 | + font-weight: 100; | |
| 2925 | + font-display: swap; | |
| 2926 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2927 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 2928 | +} | |
| 2929 | +/* latin */ | |
| 2930 | +@font-face { | |
| 2931 | + font-family: 'Montserrat'; | |
| 2932 | + font-style: italic; | |
| 2933 | + font-weight: 100; | |
| 2934 | + font-display: swap; | |
| 2935 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 2936 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 2937 | +} | |
| 2938 | +/* cyrillic-ext */ | |
| 2939 | +@font-face { | |
| 2940 | + font-family: 'Montserrat'; | |
| 2941 | + font-style: italic; | |
| 2942 | + font-weight: 200; | |
| 2943 | + font-display: swap; | |
| 2944 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2945 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 2946 | +} | |
| 2947 | +/* cyrillic */ | |
| 2948 | +@font-face { | |
| 2949 | + font-family: 'Montserrat'; | |
| 2950 | + font-style: italic; | |
| 2951 | + font-weight: 200; | |
| 2952 | + font-display: swap; | |
| 2953 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2954 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 2955 | +} | |
| 2956 | +/* vietnamese */ | |
| 2957 | +@font-face { | |
| 2958 | + font-family: 'Montserrat'; | |
| 2959 | + font-style: italic; | |
| 2960 | + font-weight: 200; | |
| 2961 | + font-display: swap; | |
| 2962 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2963 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 2964 | +} | |
| 2965 | +/* latin-ext */ | |
| 2966 | +@font-face { | |
| 2967 | + font-family: 'Montserrat'; | |
| 2968 | + font-style: italic; | |
| 2969 | + font-weight: 200; | |
| 2970 | + font-display: swap; | |
| 2971 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2972 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 2973 | +} | |
| 2974 | +/* latin */ | |
| 2975 | +@font-face { | |
| 2976 | + font-family: 'Montserrat'; | |
| 2977 | + font-style: italic; | |
| 2978 | + font-weight: 200; | |
| 2979 | + font-display: swap; | |
| 2980 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 2981 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 2982 | +} | |
| 2983 | +/* cyrillic-ext */ | |
| 2984 | +@font-face { | |
| 2985 | + font-family: 'Montserrat'; | |
| 2986 | + font-style: italic; | |
| 2987 | + font-weight: 300; | |
| 2988 | + font-display: swap; | |
| 2989 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2990 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 2991 | +} | |
| 2992 | +/* cyrillic */ | |
| 2993 | +@font-face { | |
| 2994 | + font-family: 'Montserrat'; | |
| 2995 | + font-style: italic; | |
| 2996 | + font-weight: 300; | |
| 2997 | + font-display: swap; | |
| 2998 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2999 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3000 | +} | |
| 3001 | +/* vietnamese */ | |
| 3002 | +@font-face { | |
| 3003 | + font-family: 'Montserrat'; | |
| 3004 | + font-style: italic; | |
| 3005 | + font-weight: 300; | |
| 3006 | + font-display: swap; | |
| 3007 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3008 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3009 | +} | |
| 3010 | +/* latin-ext */ | |
| 3011 | +@font-face { | |
| 3012 | + font-family: 'Montserrat'; | |
| 3013 | + font-style: italic; | |
| 3014 | + font-weight: 300; | |
| 3015 | + font-display: swap; | |
| 3016 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3017 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3018 | +} | |
| 3019 | +/* latin */ | |
| 3020 | +@font-face { | |
| 3021 | + font-family: 'Montserrat'; | |
| 3022 | + font-style: italic; | |
| 3023 | + font-weight: 300; | |
| 3024 | + font-display: swap; | |
| 3025 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3026 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3027 | +} | |
| 3028 | +/* cyrillic-ext */ | |
| 3029 | +@font-face { | |
| 3030 | + font-family: 'Montserrat'; | |
| 3031 | + font-style: italic; | |
| 3032 | + font-weight: 400; | |
| 3033 | + font-display: swap; | |
| 3034 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3035 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3036 | +} | |
| 3037 | +/* cyrillic */ | |
| 3038 | +@font-face { | |
| 3039 | + font-family: 'Montserrat'; | |
| 3040 | + font-style: italic; | |
| 3041 | + font-weight: 400; | |
| 3042 | + font-display: swap; | |
| 3043 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3044 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3045 | +} | |
| 3046 | +/* vietnamese */ | |
| 3047 | +@font-face { | |
| 3048 | + font-family: 'Montserrat'; | |
| 3049 | + font-style: italic; | |
| 3050 | + font-weight: 400; | |
| 3051 | + font-display: swap; | |
| 3052 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3053 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3054 | +} | |
| 3055 | +/* latin-ext */ | |
| 3056 | +@font-face { | |
| 3057 | + font-family: 'Montserrat'; | |
| 3058 | + font-style: italic; | |
| 3059 | + font-weight: 400; | |
| 3060 | + font-display: swap; | |
| 3061 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3062 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3063 | +} | |
| 3064 | +/* latin */ | |
| 3065 | +@font-face { | |
| 3066 | + font-family: 'Montserrat'; | |
| 3067 | + font-style: italic; | |
| 3068 | + font-weight: 400; | |
| 3069 | + font-display: swap; | |
| 3070 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3071 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3072 | +} | |
| 3073 | +/* cyrillic-ext */ | |
| 3074 | +@font-face { | |
| 3075 | + font-family: 'Montserrat'; | |
| 3076 | + font-style: italic; | |
| 3077 | + font-weight: 500; | |
| 3078 | + font-display: swap; | |
| 3079 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3080 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3081 | +} | |
| 3082 | +/* cyrillic */ | |
| 3083 | +@font-face { | |
| 3084 | + font-family: 'Montserrat'; | |
| 3085 | + font-style: italic; | |
| 3086 | + font-weight: 500; | |
| 3087 | + font-display: swap; | |
| 3088 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3089 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3090 | +} | |
| 3091 | +/* vietnamese */ | |
| 3092 | +@font-face { | |
| 3093 | + font-family: 'Montserrat'; | |
| 3094 | + font-style: italic; | |
| 3095 | + font-weight: 500; | |
| 3096 | + font-display: swap; | |
| 3097 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3098 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3099 | +} | |
| 3100 | +/* latin-ext */ | |
| 3101 | +@font-face { | |
| 3102 | + font-family: 'Montserrat'; | |
| 3103 | + font-style: italic; | |
| 3104 | + font-weight: 500; | |
| 3105 | + font-display: swap; | |
| 3106 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3107 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3108 | +} | |
| 3109 | +/* latin */ | |
| 3110 | +@font-face { | |
| 3111 | + font-family: 'Montserrat'; | |
| 3112 | + font-style: italic; | |
| 3113 | + font-weight: 500; | |
| 3114 | + font-display: swap; | |
| 3115 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3116 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3117 | +} | |
| 3118 | +/* cyrillic-ext */ | |
| 3119 | +@font-face { | |
| 3120 | + font-family: 'Montserrat'; | |
| 3121 | + font-style: italic; | |
| 3122 | + font-weight: 600; | |
| 3123 | + font-display: swap; | |
| 3124 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3125 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3126 | +} | |
| 3127 | +/* cyrillic */ | |
| 3128 | +@font-face { | |
| 3129 | + font-family: 'Montserrat'; | |
| 3130 | + font-style: italic; | |
| 3131 | + font-weight: 600; | |
| 3132 | + font-display: swap; | |
| 3133 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3134 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3135 | +} | |
| 3136 | +/* vietnamese */ | |
| 3137 | +@font-face { | |
| 3138 | + font-family: 'Montserrat'; | |
| 3139 | + font-style: italic; | |
| 3140 | + font-weight: 600; | |
| 3141 | + font-display: swap; | |
| 3142 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3143 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3144 | +} | |
| 3145 | +/* latin-ext */ | |
| 3146 | +@font-face { | |
| 3147 | + font-family: 'Montserrat'; | |
| 3148 | + font-style: italic; | |
| 3149 | + font-weight: 600; | |
| 3150 | + font-display: swap; | |
| 3151 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3152 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3153 | +} | |
| 3154 | +/* latin */ | |
| 3155 | +@font-face { | |
| 3156 | + font-family: 'Montserrat'; | |
| 3157 | + font-style: italic; | |
| 3158 | + font-weight: 600; | |
| 3159 | + font-display: swap; | |
| 3160 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3161 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3162 | +} | |
| 3163 | +/* cyrillic-ext */ | |
| 3164 | +@font-face { | |
| 3165 | + font-family: 'Montserrat'; | |
| 3166 | + font-style: italic; | |
| 3167 | + font-weight: 700; | |
| 3168 | + font-display: swap; | |
| 3169 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3170 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3171 | +} | |
| 3172 | +/* cyrillic */ | |
| 3173 | +@font-face { | |
| 3174 | + font-family: 'Montserrat'; | |
| 3175 | + font-style: italic; | |
| 3176 | + font-weight: 700; | |
| 3177 | + font-display: swap; | |
| 3178 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3179 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3180 | +} | |
| 3181 | +/* vietnamese */ | |
| 3182 | +@font-face { | |
| 3183 | + font-family: 'Montserrat'; | |
| 3184 | + font-style: italic; | |
| 3185 | + font-weight: 700; | |
| 3186 | + font-display: swap; | |
| 3187 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3188 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3189 | +} | |
| 3190 | +/* latin-ext */ | |
| 3191 | +@font-face { | |
| 3192 | + font-family: 'Montserrat'; | |
| 3193 | + font-style: italic; | |
| 3194 | + font-weight: 700; | |
| 3195 | + font-display: swap; | |
| 3196 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3197 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3198 | +} | |
| 3199 | +/* latin */ | |
| 3200 | +@font-face { | |
| 3201 | + font-family: 'Montserrat'; | |
| 3202 | + font-style: italic; | |
| 3203 | + font-weight: 700; | |
| 3204 | + font-display: swap; | |
| 3205 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3206 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3207 | +} | |
| 3208 | +/* cyrillic-ext */ | |
| 3209 | +@font-face { | |
| 3210 | + font-family: 'Montserrat'; | |
| 3211 | + font-style: italic; | |
| 3212 | + font-weight: 800; | |
| 3213 | + font-display: swap; | |
| 3214 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3215 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3216 | +} | |
| 3217 | +/* cyrillic */ | |
| 3218 | +@font-face { | |
| 3219 | + font-family: 'Montserrat'; | |
| 3220 | + font-style: italic; | |
| 3221 | + font-weight: 800; | |
| 3222 | + font-display: swap; | |
| 3223 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3224 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3225 | +} | |
| 3226 | +/* vietnamese */ | |
| 3227 | +@font-face { | |
| 3228 | + font-family: 'Montserrat'; | |
| 3229 | + font-style: italic; | |
| 3230 | + font-weight: 800; | |
| 3231 | + font-display: swap; | |
| 3232 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3233 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3234 | +} | |
| 3235 | +/* latin-ext */ | |
| 3236 | +@font-face { | |
| 3237 | + font-family: 'Montserrat'; | |
| 3238 | + font-style: italic; | |
| 3239 | + font-weight: 800; | |
| 3240 | + font-display: swap; | |
| 3241 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3242 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3243 | +} | |
| 3244 | +/* latin */ | |
| 3245 | +@font-face { | |
| 3246 | + font-family: 'Montserrat'; | |
| 3247 | + font-style: italic; | |
| 3248 | + font-weight: 800; | |
| 3249 | + font-display: swap; | |
| 3250 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3251 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3252 | +} | |
| 3253 | +/* cyrillic-ext */ | |
| 3254 | +@font-face { | |
| 3255 | + font-family: 'Montserrat'; | |
| 3256 | + font-style: italic; | |
| 3257 | + font-weight: 900; | |
| 3258 | + font-display: swap; | |
| 3259 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3260 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3261 | +} | |
| 3262 | +/* cyrillic */ | |
| 3263 | +@font-face { | |
| 3264 | + font-family: 'Montserrat'; | |
| 3265 | + font-style: italic; | |
| 3266 | + font-weight: 900; | |
| 3267 | + font-display: swap; | |
| 3268 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3269 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3270 | +} | |
| 3271 | +/* vietnamese */ | |
| 3272 | +@font-face { | |
| 3273 | + font-family: 'Montserrat'; | |
| 3274 | + font-style: italic; | |
| 3275 | + font-weight: 900; | |
| 3276 | + font-display: swap; | |
| 3277 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3278 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3279 | +} | |
| 3280 | +/* latin-ext */ | |
| 3281 | +@font-face { | |
| 3282 | + font-family: 'Montserrat'; | |
| 3283 | + font-style: italic; | |
| 3284 | + font-weight: 900; | |
| 3285 | + font-display: swap; | |
| 3286 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3287 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3288 | +} | |
| 3289 | +/* latin */ | |
| 3290 | +@font-face { | |
| 3291 | + font-family: 'Montserrat'; | |
| 3292 | + font-style: italic; | |
| 3293 | + font-weight: 900; | |
| 3294 | + font-display: swap; | |
| 3295 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3296 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3297 | +} | |
| 3298 | +/* cyrillic-ext */ | |
| 3299 | +@font-face { | |
| 3300 | + font-family: 'Montserrat'; | |
| 3301 | + font-style: normal; | |
| 3302 | + font-weight: 100; | |
| 3303 | + font-display: swap; | |
| 3304 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3305 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3306 | +} | |
| 3307 | +/* cyrillic */ | |
| 3308 | +@font-face { | |
| 3309 | + font-family: 'Montserrat'; | |
| 3310 | + font-style: normal; | |
| 3311 | + font-weight: 100; | |
| 3312 | + font-display: swap; | |
| 3313 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3314 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3315 | +} | |
| 3316 | +/* vietnamese */ | |
| 3317 | +@font-face { | |
| 3318 | + font-family: 'Montserrat'; | |
| 3319 | + font-style: normal; | |
| 3320 | + font-weight: 100; | |
| 3321 | + font-display: swap; | |
| 3322 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3323 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3324 | +} | |
| 3325 | +/* latin-ext */ | |
| 3326 | +@font-face { | |
| 3327 | + font-family: 'Montserrat'; | |
| 3328 | + font-style: normal; | |
| 3329 | + font-weight: 100; | |
| 3330 | + font-display: swap; | |
| 3331 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3332 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3333 | +} | |
| 3334 | +/* latin */ | |
| 3335 | +@font-face { | |
| 3336 | + font-family: 'Montserrat'; | |
| 3337 | + font-style: normal; | |
| 3338 | + font-weight: 100; | |
| 3339 | + font-display: swap; | |
| 3340 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3341 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3342 | +} | |
| 3343 | +/* cyrillic-ext */ | |
| 3344 | +@font-face { | |
| 3345 | + font-family: 'Montserrat'; | |
| 3346 | + font-style: normal; | |
| 3347 | + font-weight: 200; | |
| 3348 | + font-display: swap; | |
| 3349 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3350 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3351 | +} | |
| 3352 | +/* cyrillic */ | |
| 3353 | +@font-face { | |
| 3354 | + font-family: 'Montserrat'; | |
| 3355 | + font-style: normal; | |
| 3356 | + font-weight: 200; | |
| 3357 | + font-display: swap; | |
| 3358 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3359 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3360 | +} | |
| 3361 | +/* vietnamese */ | |
| 3362 | +@font-face { | |
| 3363 | + font-family: 'Montserrat'; | |
| 3364 | + font-style: normal; | |
| 3365 | + font-weight: 200; | |
| 3366 | + font-display: swap; | |
| 3367 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3368 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3369 | +} | |
| 3370 | +/* latin-ext */ | |
| 3371 | +@font-face { | |
| 3372 | + font-family: 'Montserrat'; | |
| 3373 | + font-style: normal; | |
| 3374 | + font-weight: 200; | |
| 3375 | + font-display: swap; | |
| 3376 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3377 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3378 | +} | |
| 3379 | +/* latin */ | |
| 3380 | +@font-face { | |
| 3381 | + font-family: 'Montserrat'; | |
| 3382 | + font-style: normal; | |
| 3383 | + font-weight: 200; | |
| 3384 | + font-display: swap; | |
| 3385 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3386 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3387 | +} | |
| 3388 | +/* cyrillic-ext */ | |
| 3389 | +@font-face { | |
| 3390 | + font-family: 'Montserrat'; | |
| 3391 | + font-style: normal; | |
| 3392 | + font-weight: 300; | |
| 3393 | + font-display: swap; | |
| 3394 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3395 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3396 | +} | |
| 3397 | +/* cyrillic */ | |
| 3398 | +@font-face { | |
| 3399 | + font-family: 'Montserrat'; | |
| 3400 | + font-style: normal; | |
| 3401 | + font-weight: 300; | |
| 3402 | + font-display: swap; | |
| 3403 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3404 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3405 | +} | |
| 3406 | +/* vietnamese */ | |
| 3407 | +@font-face { | |
| 3408 | + font-family: 'Montserrat'; | |
| 3409 | + font-style: normal; | |
| 3410 | + font-weight: 300; | |
| 3411 | + font-display: swap; | |
| 3412 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3413 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3414 | +} | |
| 3415 | +/* latin-ext */ | |
| 3416 | +@font-face { | |
| 3417 | + font-family: 'Montserrat'; | |
| 3418 | + font-style: normal; | |
| 3419 | + font-weight: 300; | |
| 3420 | + font-display: swap; | |
| 3421 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3422 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3423 | +} | |
| 3424 | +/* latin */ | |
| 3425 | +@font-face { | |
| 3426 | + font-family: 'Montserrat'; | |
| 3427 | + font-style: normal; | |
| 3428 | + font-weight: 300; | |
| 3429 | + font-display: swap; | |
| 3430 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3431 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3432 | +} | |
| 3433 | +/* cyrillic-ext */ | |
| 3434 | +@font-face { | |
| 3435 | + font-family: 'Montserrat'; | |
| 3436 | + font-style: normal; | |
| 3437 | + font-weight: 400; | |
| 3438 | + font-display: swap; | |
| 3439 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3440 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3441 | +} | |
| 3442 | +/* cyrillic */ | |
| 3443 | +@font-face { | |
| 3444 | + font-family: 'Montserrat'; | |
| 3445 | + font-style: normal; | |
| 3446 | + font-weight: 400; | |
| 3447 | + font-display: swap; | |
| 3448 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3449 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3450 | +} | |
| 3451 | +/* vietnamese */ | |
| 3452 | +@font-face { | |
| 3453 | + font-family: 'Montserrat'; | |
| 3454 | + font-style: normal; | |
| 3455 | + font-weight: 400; | |
| 3456 | + font-display: swap; | |
| 3457 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3458 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3459 | +} | |
| 3460 | +/* latin-ext */ | |
| 3461 | +@font-face { | |
| 3462 | + font-family: 'Montserrat'; | |
| 3463 | + font-style: normal; | |
| 3464 | + font-weight: 400; | |
| 3465 | + font-display: swap; | |
| 3466 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3467 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3468 | +} | |
| 3469 | +/* latin */ | |
| 3470 | +@font-face { | |
| 3471 | + font-family: 'Montserrat'; | |
| 3472 | + font-style: normal; | |
| 3473 | + font-weight: 400; | |
| 3474 | + font-display: swap; | |
| 3475 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3476 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3477 | +} | |
| 3478 | +/* cyrillic-ext */ | |
| 3479 | +@font-face { | |
| 3480 | + font-family: 'Montserrat'; | |
| 3481 | + font-style: normal; | |
| 3482 | + font-weight: 500; | |
| 3483 | + font-display: swap; | |
| 3484 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3485 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3486 | +} | |
| 3487 | +/* cyrillic */ | |
| 3488 | +@font-face { | |
| 3489 | + font-family: 'Montserrat'; | |
| 3490 | + font-style: normal; | |
| 3491 | + font-weight: 500; | |
| 3492 | + font-display: swap; | |
| 3493 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3494 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3495 | +} | |
| 3496 | +/* vietnamese */ | |
| 3497 | +@font-face { | |
| 3498 | + font-family: 'Montserrat'; | |
| 3499 | + font-style: normal; | |
| 3500 | + font-weight: 500; | |
| 3501 | + font-display: swap; | |
| 3502 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3503 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3504 | +} | |
| 3505 | +/* latin-ext */ | |
| 3506 | +@font-face { | |
| 3507 | + font-family: 'Montserrat'; | |
| 3508 | + font-style: normal; | |
| 3509 | + font-weight: 500; | |
| 3510 | + font-display: swap; | |
| 3511 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3512 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3513 | +} | |
| 3514 | +/* latin */ | |
| 3515 | +@font-face { | |
| 3516 | + font-family: 'Montserrat'; | |
| 3517 | + font-style: normal; | |
| 3518 | + font-weight: 500; | |
| 3519 | + font-display: swap; | |
| 3520 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3521 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3522 | +} | |
| 3523 | +/* cyrillic-ext */ | |
| 3524 | +@font-face { | |
| 3525 | + font-family: 'Montserrat'; | |
| 3526 | + font-style: normal; | |
| 3527 | + font-weight: 600; | |
| 3528 | + font-display: swap; | |
| 3529 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3530 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3531 | +} | |
| 3532 | +/* cyrillic */ | |
| 3533 | +@font-face { | |
| 3534 | + font-family: 'Montserrat'; | |
| 3535 | + font-style: normal; | |
| 3536 | + font-weight: 600; | |
| 3537 | + font-display: swap; | |
| 3538 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3539 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3540 | +} | |
| 3541 | +/* vietnamese */ | |
| 3542 | +@font-face { | |
| 3543 | + font-family: 'Montserrat'; | |
| 3544 | + font-style: normal; | |
| 3545 | + font-weight: 600; | |
| 3546 | + font-display: swap; | |
| 3547 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3548 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3549 | +} | |
| 3550 | +/* latin-ext */ | |
| 3551 | +@font-face { | |
| 3552 | + font-family: 'Montserrat'; | |
| 3553 | + font-style: normal; | |
| 3554 | + font-weight: 600; | |
| 3555 | + font-display: swap; | |
| 3556 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3557 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3558 | +} | |
| 3559 | +/* latin */ | |
| 3560 | +@font-face { | |
| 3561 | + font-family: 'Montserrat'; | |
| 3562 | + font-style: normal; | |
| 3563 | + font-weight: 600; | |
| 3564 | + font-display: swap; | |
| 3565 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3566 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3567 | +} | |
| 3568 | +/* cyrillic-ext */ | |
| 3569 | +@font-face { | |
| 3570 | + font-family: 'Montserrat'; | |
| 3571 | + font-style: normal; | |
| 3572 | + font-weight: 700; | |
| 3573 | + font-display: swap; | |
| 3574 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3575 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3576 | +} | |
| 3577 | +/* cyrillic */ | |
| 3578 | +@font-face { | |
| 3579 | + font-family: 'Montserrat'; | |
| 3580 | + font-style: normal; | |
| 3581 | + font-weight: 700; | |
| 3582 | + font-display: swap; | |
| 3583 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3584 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3585 | +} | |
| 3586 | +/* vietnamese */ | |
| 3587 | +@font-face { | |
| 3588 | + font-family: 'Montserrat'; | |
| 3589 | + font-style: normal; | |
| 3590 | + font-weight: 700; | |
| 3591 | + font-display: swap; | |
| 3592 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3593 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3594 | +} | |
| 3595 | +/* latin-ext */ | |
| 3596 | +@font-face { | |
| 3597 | + font-family: 'Montserrat'; | |
| 3598 | + font-style: normal; | |
| 3599 | + font-weight: 700; | |
| 3600 | + font-display: swap; | |
| 3601 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3602 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3603 | +} | |
| 3604 | +/* latin */ | |
| 3605 | +@font-face { | |
| 3606 | + font-family: 'Montserrat'; | |
| 3607 | + font-style: normal; | |
| 3608 | + font-weight: 700; | |
| 3609 | + font-display: swap; | |
| 3610 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3611 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3612 | +} | |
| 3613 | +/* cyrillic-ext */ | |
| 3614 | +@font-face { | |
| 3615 | + font-family: 'Montserrat'; | |
| 3616 | + font-style: normal; | |
| 3617 | + font-weight: 800; | |
| 3618 | + font-display: swap; | |
| 3619 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3620 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3621 | +} | |
| 3622 | +/* cyrillic */ | |
| 3623 | +@font-face { | |
| 3624 | + font-family: 'Montserrat'; | |
| 3625 | + font-style: normal; | |
| 3626 | + font-weight: 800; | |
| 3627 | + font-display: swap; | |
| 3628 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3629 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3630 | +} | |
| 3631 | +/* vietnamese */ | |
| 3632 | +@font-face { | |
| 3633 | + font-family: 'Montserrat'; | |
| 3634 | + font-style: normal; | |
| 3635 | + font-weight: 800; | |
| 3636 | + font-display: swap; | |
| 3637 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3638 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3639 | +} | |
| 3640 | +/* latin-ext */ | |
| 3641 | +@font-face { | |
| 3642 | + font-family: 'Montserrat'; | |
| 3643 | + font-style: normal; | |
| 3644 | + font-weight: 800; | |
| 3645 | + font-display: swap; | |
| 3646 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3647 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3648 | +} | |
| 3649 | +/* latin */ | |
| 3650 | +@font-face { | |
| 3651 | + font-family: 'Montserrat'; | |
| 3652 | + font-style: normal; | |
| 3653 | + font-weight: 800; | |
| 3654 | + font-display: swap; | |
| 3655 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3656 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3657 | +} | |
| 3658 | +/* cyrillic-ext */ | |
| 3659 | +@font-face { | |
| 3660 | + font-family: 'Montserrat'; | |
| 3661 | + font-style: normal; | |
| 3662 | + font-weight: 900; | |
| 3663 | + font-display: swap; | |
| 3664 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3665 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3666 | +} | |
| 3667 | +/* cyrillic */ | |
| 3668 | +@font-face { | |
| 3669 | + font-family: 'Montserrat'; | |
| 3670 | + font-style: normal; | |
| 3671 | + font-weight: 900; | |
| 3672 | + font-display: swap; | |
| 3673 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3674 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3675 | +} | |
| 3676 | +/* vietnamese */ | |
| 3677 | +@font-face { | |
| 3678 | + font-family: 'Montserrat'; | |
| 3679 | + font-style: normal; | |
| 3680 | + font-weight: 900; | |
| 3681 | + font-display: swap; | |
| 3682 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3683 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3684 | +} | |
| 3685 | +/* latin-ext */ | |
| 3686 | +@font-face { | |
| 3687 | + font-family: 'Montserrat'; | |
| 3688 | + font-style: normal; | |
| 3689 | + font-weight: 900; | |
| 3690 | + font-display: swap; | |
| 3691 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3692 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3693 | +} | |
| 3694 | +/* latin */ | |
| 3695 | +@font-face { | |
| 3696 | + font-family: 'Montserrat'; | |
| 3697 | + font-style: normal; | |
| 3698 | + font-weight: 900; | |
| 3699 | + font-display: swap; | |
| 3700 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3701 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3702 | +} | |
| 3703 | + | |
| 3704 | +:root { | |
| 3705 | +--font-base: Montserrat; | |
| 3706 | +--font-headings: Montserrat; | |
| 3707 | +--font-input: Montserrat; | |
| 3708 | +} | |
| 3709 | +body, #content, .entry-content, .post-content, .page-content, .post-excerpt, .entry-summary, .entry-excerpt, .widget-area, .widget, .sidebar, #sidebar, footer, .footer, #footer, .site-footer { | |
| 3710 | +font-family: "Montserrat"; | |
| 3711 | + } | |
| 3712 | +#site-title, .site-title, #site-title a, .site-title a, .entry-title, .entry-title a, h1, h2, h3, h4, h5, h6, .widget-title, .elementor-heading-title { | |
| 3713 | +font-family: "Montserrat"; | |
| 3714 | +font-weight: 500; | |
| 3715 | + } | |
| 3716 | +button, .button, input, select, textarea, .wp-block-button, .wp-block-button__link { | |
| 3717 | +font-family: "Montserrat"; | |
| 3718 | +font-weight: 500; | |
| 3719 | + } | |
| 3720 | +#site-title, .site-title, #site-title a, .site-title a, #site-logo, #site-logo a, #logo, #logo a, .logo, .logo a, .wp-block-site-title, .wp-block-site-title a { | |
| 3721 | +font-family: "Montserrat"; | |
| 3722 | + } | |
| 3723 | +#site-description, .site-description, #site-tagline, .site-tagline, .wp-block-site-tagline { | |
| 3724 | +font-family: "Montserrat"; | |
| 3725 | + } | |
| 3726 | +.menu, .page_item a, .menu-item a, .wp-block-navigation, .wp-block-navigation-item__content { | |
| 3727 | +font-family: "Montserrat"; | |
| 3728 | + } | |
| 3729 | +.entry-content, .entry-content p, .post-content, .page-content, .post-excerpt, .entry-summary, .entry-excerpt, .excerpt, .excerpt p, .type-post p, .type-page p, .wp-block-post-content, .wp-block-post-excerpt, .elementor, .elementor p { | |
| 3730 | +font-family: "Montserrat"; | |
| 3731 | + } | |
| 3732 | +.wp-block-post-title, .wp-block-post-title a, .entry-title, .entry-title a, .post-title, .post-title a, .page-title, .entry-content h1, #content h1, .type-post h1, .type-page h1, .elementor h1 { | |
| 3733 | +font-family: "Montserrat"; | |
| 3734 | +font-weight: 700; | |
| 3735 | + } | |
| 3736 | +.entry-content h2, .post-content h2, .page-content h2, #content h2, .type-post h2, .type-page h2, .elementor h2 { | |
| 3737 | +font-family: "Montserrat"; | |
| 3738 | +font-weight: 800; | |
| 3739 | + } | |
| 3740 | +.entry-content h3, .post-content h3, .page-content h3, #content h3, .type-post h3, .type-page h3, .elementor h3 { | |
| 3741 | +font-family: "Montserrat"; | |
| 3742 | + } | |
| 3743 | +.entry-content h4, .post-content h4, .page-content h4, #content h4, .type-post h4, .type-page h4, .elementor h4 { | |
| 3744 | +font-family: "Montserrat"; | |
| 3745 | + } | |
| 3746 | +.entry-content h5, .post-content h5, .page-content h5, #content h5, .type-post h5, .type-page h5, .elementor h5 { | |
| 3747 | +font-family: "Montserrat"; | |
| 3748 | + } | |
| 3749 | +.entry-content h6, .post-content h6, .page-content h6, #content h6, .type-post h6, .type-page h6, .elementor h6 { | |
| 3750 | +font-family: "Montserrat"; | |
| 3751 | + } | |
| 3752 | +ul, ol, ul li, ol li, li { | |
| 3753 | +font-family: "Montserrat"; | |
| 3754 | + } | |
| 3755 | +blockquote, .wp-block-quote, blockquote p, .wp-block-quote p { | |
| 3756 | +font-family: "Montserrat"; | |
| 3757 | + } | |
| 3758 | +.widget-title, .widget-area h1, .widget-area h2, .widget-area h3, .widget-area h4, .widget-area h5, .widget-area h6, #secondary h1, #secondary h2, #secondary h3, #secondary h4, #secondary h5, #secondary h6 { | |
| 3759 | +font-family: "Montserrat"; | |
| 3760 | + } | |
| 3761 | +.widget-area, .widget, .sidebar, #sidebar, #secondary { | |
| 3762 | +font-family: "Montserrat"; | |
| 3763 | + } | |
| 3764 | +footer h1, footer h2, footer h3, footer h4, footer h5, footer h6, .footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6, #footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6 { | |
| 3765 | +font-family: "Montserrat"; | |
| 3766 | + } | |
| 3767 | +footer, #footer, .footer, .site-footer { | |
| 3768 | +font-family: "Montserrat"; | |
| 3769 | + } | |
| 3770 | + </style> | |
| 3771 | + <!-- Fonts Plugin CSS --> | |
| 3772 | + <noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript> | |
| 3773 | +<script> | |
| 3774 | +document.addEventListener( 'wpcf7mailsent', function( event ) { | |
| 3775 | + ga('send', 'event', 'Contact Form', 'submit'); | |
| 3776 | +}, false ); | |
| 3777 | +</script> | |
| 3778 | + | |
| 3779 | + | |
| 3780 | +</head> | |
| 3781 | + | |
| 3782 | +<body class="wp-singular job_listing-template-default single single-job_listing postid-52673 wp-theme-stack wp-child-theme-stack-child stack--rounded normal-layout dropdowns--hover active-tabs active-accordions parallax-enable-mobile stack-child wpb-js-composer js-comp-ver-8.7.3 vc_responsive elementor-default elementor-kit-45733" data-smooth-scroll-offset="0" data-smooth-scroll-offset-mobile="0" data-skip-responsive-menu="yes"> | |
| 3783 | + | |
| 3784 | +<a href="#" id="start" title="Start"></a> | |
| 3785 | + | |
| 3786 | +<div class="notification pos-top pos-right search-box bg--white border--bottom" data-animation="from-top" data-notification-link="search-box"> | |
| 3787 | + <form method="get" action="https://chum.carrieresante.gouv.qc.ca/"> | |
| 3788 | + <div class="row"> | |
| 3789 | + <div class="col-md-6 col-md-offset-3 col-sm-8 col-sm-offset-2"> | |
| 3790 | + <input type="search" name="s" placeholder="Type search query and hit enter" /> | |
| 3791 | + </div> | |
| 3792 | + </div><!--end of row--> | |
| 3793 | + </form> | |
| 3794 | +</div><!--end of notification--> | |
| 3795 | +<div class="nav-container"> | |
| 3796 | + | |
| 3797 | + <div class="bar bar--sm visible-xs original--bg bar--mobile-sticky" data-scroll-class="200px:pos-fixed"> | |
| 3798 | + <div class="container"> | |
| 3799 | + <div class="row"> | |
| 3800 | + <div class="col-xs-8 col-sm-10"> | |
| 3801 | + | |
| 3802 | +<a href="https://chum.carrieresante.gouv.qc.ca/" class="logo-holder"> | |
| 3803 | + <img class="logo logo-dark" alt="Logo Etablissement" src="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/06/logo_chum.png" /> | |
| 3804 | + <img class="logo logo-light" alt="Logo Etablissement" src="" /> | |
| 3805 | +</a> </div> | |
| 3806 | + <div class="col-xs-4 col-sm-2 text-right mobile-header"> | |
| 3807 | + <a href="#" class="hamburger-toggle" data-toggle-class="#menu1;hidden-xs"> | |
| 3808 | + <i class="icon--sm stack-interface stack-menu"></i> | |
| 3809 | + </a> | |
| 3810 | + </div> | |
| 3811 | + </div><!--end of row--> | |
| 3812 | + </div><!--end of container--> | |
| 3813 | + </div><!--end bar--> | |
| 3814 | + | |
| 3815 | + <nav id="menu1" class="bar bar--sm bar-1 hidden-xs hiddem-sm original--bg" data-scroll-class="200px:pos-fixed"> | |
| 3816 | + <div class="container"> | |
| 3817 | + <div class="row"> | |
| 3818 | + <div class="col-md-1 col-sm-2 hidden-xs"> | |
| 3819 | + <div class="bar__module"> | |
| 3820 | + | |
| 3821 | +<a href="https://chum.carrieresante.gouv.qc.ca/" class="logo-holder"> | |
| 3822 | + <img class="logo logo-dark" alt="Logo Etablissement" src="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/06/logo_chum.png" /> | |
| 3823 | + <img class="logo logo-light" alt="Logo Etablissement" src="" /> | |
| 3824 | +</a> | |
| 3825 | + </div><!--end module--> | |
| 3826 | + </div> | |
| 3827 | + <div class="col-md-11 col-sm-12 text-right text-left-xs text-left-sm"> | |
| 3828 | + <div class="bar__module"> | |
| 3829 | + <ul id="menu-header-fr" class="menu-horizontal text-left"><li id="menu-item-4481" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-4481 dropdown dropdown--hover"><a href="#" class="dropdown__trigger"><span>Emplois</span></a><div class="dropdown__container"><div class="container"><div class="row"><div class="dropdown__content col-md-4 col-sm-4"><ul class="menu-vertical"> <li id="menu-item-45752" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45752"><a href="https://chum.carrieresante.gouv.qc.ca/soins-infirmiers-et-cardiorespiratoires/">Soins infirmiers et cardiorespiratoires</a></li> | |
| 3830 | + <li id="menu-item-45750" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45750"><a href="https://chum.carrieresante.gouv.qc.ca/gestion/">Gestion</a></li> | |
| 3831 | + <li id="menu-item-45749" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45749"><a href="https://chum.carrieresante.gouv.qc.ca/personnel-de-ladministration/">Personnel de l’administration</a></li> | |
| 3832 | + <li id="menu-item-45753" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45753"><a href="https://chum.carrieresante.gouv.qc.ca/physique-et-genie-biomedical/">Physique et génie biomédical</a></li> | |
| 3833 | + <li id="menu-item-46249" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-46249"><a href="https://chum.carrieresante.gouv.qc.ca/professionnel-le-et-technicien-ne-de-la-sante-et-des-services-sociaux/">Professionnel.le et technicien.ne de la santé et des services sociaux</a></li> | |
| 3834 | + <li id="menu-item-45751" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45751"><a href="https://chum.carrieresante.gouv.qc.ca/assistance-a-la-personne-services-et-metiers/">Assistance à la personne – services et métiers</a></li> | |
| 3835 | +</ul></div></div></div></div></li> | |
| 3836 | +<li id="menu-item-20423" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20423"><a href="https://chum-recrutement.carrieresante.gouv.qc.ca">Dépose ton CV</a></li> | |
| 3837 | +<li id="menu-item-20422" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20422"><a href="https://chum.carrieresante.gouv.qc.ca/alerte-emplois/">Alerte emploi</a></li> | |
| 3838 | +<li id="menu-item-4839" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4839"><a href="https://chum.carrieresante.gouv.qc.ca/nous-joindre/">Nous joindre</a></li> | |
| 3839 | +</ul></div> | |
| 3840 | + | |
| 3841 | +<div class="bar__module stack-header-buttons"> | |
| 3842 | + | |
| 3843 | + | |
| 3844 | + | |
| 3845 | + <a | |
| 3846 | + class="btn btn--sm btn--demo" | |
| 3847 | + href="https://chum-recrutement.carrieresante.gouv.qc.ca" | |
| 3848 | + target="" | |
| 3849 | + > | |
| 3850 | + <span class="btn__text">Mon profil</span> | |
| 3851 | + </a> | |
| 3852 | + | |
| 3853 | + | |
| 3854 | +</div><!--end module--> </div> | |
| 3855 | + </div><!--end of row--> | |
| 3856 | + </div><!--end of container--> | |
| 3857 | + </nav><!--end bar--> | |
| 3858 | + | |
| 3859 | +</div> | |
| 3860 | +<div class="main-container"> | |
| 3861 | + | |
| 3862 | + | |
| 3863 | +<section> | |
| 3864 | + <div class="container"> | |
| 3865 | + <div class="row"> | |
| 3866 | + | |
| 3867 | + <div class="col-sm-10 col-md-8 col-sm-offset-1 col-md-offset-2"> | |
| 3868 | + <article> | |
| 3869 | + | |
| 3870 | + <div class="article__title text-center"> | |
| 3871 | + <h1 class="h2">Technologue en imagerie médicale du domaine de la médecine nucléaire</h1> </div><!--end article title--> | |
| 3872 | + <span>3 juin 2026</span> | <span></span> | |
| 3873 | + <div class="article__body post-content"> | |
| 3874 | + | |
| 3875 | + <div class="featured-image-holder"> | |
| 3876 | + </div> | |
| 3877 | + | |
| 3878 | + <div class="single_job_listing"> | |
| 3879 | + | |
| 3880 | +<ul class="job-listing-meta meta"> | |
| 3881 | + | |
| 3882 | + | |
| 3883 | + <li class="job-type temps-partiel-occasionnel">TPO - Temps partiel occasionnel</li> | |
| 3884 | + | |
| 3885 | + | |
| 3886 | + <li class="location"><a class="google_map_link" href="https://maps.google.com/maps?q=CHUM&zoom=14&size=512x512&maptype=roadmap&sensor=false" target="_blank">CHUM</a></li> | |
| 3887 | + | |
| 3888 | + <li class="date-posted"><time datetime="2026-06-03">Publié il y a 3 mois</time></li> | |
| 3889 | + | |
| 3890 | + | |
| 3891 | + | |
| 3892 | + </ul> | |
| 3893 | + | |
| 3894 | + <div class="before-job"> | |
| 3895 | + <div class="job_application application"> | |
| 3896 | + | |
| 3897 | + <button id="applyButton_6a850ff2bf89d" class="application_button button">Postuler</button> | |
| 3898 | + <script> | |
| 3899 | + document.getElementById('applyButton_6a850ff2bf89d').addEventListener('click', function() { | |
| 3900 | + window.open('https://chum-recrutement.carrieresante.gouv.qc.ca/Emploi/Index/Consulter?code=2026-001568', '_blank'); | |
| 3901 | + }); | |
| 3902 | + </script> | |
| 3903 | + | |
| 3904 | + </div> | |
| 3905 | + </div> | |
| 3906 | + | |
| 3907 | + <div class="job_description"> | |
| 3908 | + | |
| 3909 | + <div class="informations-de-base"><div class="info-item"><span class="icon"><svg class="svg-location" xmlns="http://www.w3.org/2000/svg" width="17.384" height="24" viewBox="0 0 17.384 24"><path d="M8.692,0A8.7,8.7,0,0,0,0,8.692C0,14.64,7.778,23.372,8.11,23.74a.783.783,0,0,0,1.165,0c.331-.369,8.11-9.1,8.11-15.049A8.7,8.7,0,0,0,8.692,0m0,13.065a4.373,4.373,0,1,1,4.373-4.373,4.378,4.378,0,0,1-4.373,4.373" fill="#16375e"/></svg></span><span class="info-text">CHUM</span></div><div class="info-item"><span class="icon"><svg class="svg-salary" xmlns="http://www.w3.org/2000/svg" width="22" height="26" viewBox="0 0 22 26"><path d="M.6,7.913A.594.594,0,0,1,0,7.32V5.539A2.375,2.375,0,0,1,2.374,3.165H4.748V.593A.594.594,0,0,1,5.343,0H7.32a.593.593,0,0,1,.593.593V3.165h6.331V.593a.594.594,0,0,1,.6-.593h1.977a.593.593,0,0,1,.593.593V3.165h2.374a2.375,2.375,0,0,1,2.374,2.374V7.32a.593.593,0,0,1-.593.593ZM21.564,9.5a.593.593,0,0,1,.593.593v12.86a2.375,2.375,0,0,1-2.374,2.374H2.374A2.375,2.375,0,0,1,0,22.949V10.089A.594.594,0,0,1,.6,9.5Zm-5.879,3.34a.591.591,0,0,0-.838,0L9.6,18.036,7.329,15.742a.6.6,0,0,0-.84,0L5.084,17.133a.594.594,0,0,0,0,.84L9.167,22.09a.589.589,0,0,0,.838,0l7.071-7.014a.591.591,0,0,0,0-.838Z" fill="#16375e"/></svg></span><span class="info-text">Entre 28,40 $ et 40,88 $/heure</span></div><div class="info-item"><span class="icon"><svg class="svg-status" xmlns="http://www.w3.org/2000/svg" width="27" height="16" viewBox="0 0 27 16"><path d="M26.882,1.344V14.785a1.345,1.345,0,0,1-1.344,1.344H1.344A1.345,1.345,0,0,1,0,14.785V1.344A1.345,1.345,0,0,1,1.344,0H25.538a1.345,1.345,0,0,1,1.344,1.344M4.7,2.016H2.016V4.7A2.687,2.687,0,0,0,4.7,2.016m0,12.1a2.687,2.687,0,0,0-2.688-2.688v2.688ZM16.8,8.065c0-2.228-1.5-4.032-3.36-4.032s-3.36,1.8-3.36,4.032,1.5,4.032,3.36,4.032,3.36-1.8,3.36-4.032m8.065-6.049H22.178A2.687,2.687,0,0,0,24.866,4.7Zm0,9.409a2.687,2.687,0,0,0-2.688,2.688h2.688Z" fill="#16375e"/></svg></span><span class="info-text">TPO - Temps partiel occasionnel</span></div></div> <h2>Mandat</h2> | |
| 3910 | +<div class="default-text"><span></p> | |
| 3911 | +<p style="margin-top:0cm;margin-right:0cm;margin-bottom:12.0pt;margin-left:0cm"><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Faites partie d’une équipe qui transforme des images en réponses pour nos patients!</span></p> | |
| 3912 | +<p style="margin-top:0cm;margin-right:0cm;margin-bottom:12.0pt;margin-left:0cm;text-align:start"><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Le CHUM est un hôpital universitaire à la fois innovant et humain, au service des patient(e)s et du réseau. Il offre les meilleurs soins, spécialisés et surspécialisés à toute la population québécoise. Grâce à ses expertises uniques, la recherche et ses innovations, le CHUM améliore la santé globale de la population. La communauté CHUM est portée par l’audace, nourrie par l’apprentissage continu, unie par la collaboration et guidée par la bienveillance. Travailler au CHUM, c’est faire partie d’une équipe dynamique, humaine et engagée, où chacun.ne contribue à l’excellence des soins et l’avancement des connaissances, au profit de la population de tout le Québec. </span></p> | |
| 3913 | +<p style="margin-top:0cm;margin-right:0cm;margin-bottom:12.0pt;margin-left:0cm;text-align:start"><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Nous sommes présentement à la recherche de technologues en médecine nucléaire pour combler les besoins au sein de l’équipe. Bien que l’offre d’emploi soit sur la liste de rappel, sachez que vous travaillerez à la hauteur de vos disponibilités.</p> | |
| 3914 | +<p>Le technologue en médecine nucléaire prépare et administre des substances radioactives. Il suit la circulation de ces substances dans le corps humain et étudie la physiologie des organes à l’aide d’appareils prévus à cette fin. Les images produites servent à des fins diagnostiques et thérapeutiques.</span></p> | |
| 3915 | +<p style="margin-top:0cm;margin-right:0cm;margin-bottom:12.0pt;margin-left:0cm;text-align:start"><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Dans un milieu d’enseignement et de recherche à la fois clinique et fondamentale, l’équipe du Département de médecine nucléaire du CHUM s’efforce d’offrir à chaque bénéficiaire des services d’imagerie diagnostique. L’équipe médicale, les gestionnaires et les technologues ont à cœur le bien-être, le respect, la confidentialité et l’écoute des patients. Le Département poursuit son rayonnement scientifique sur les scènes locale, nationale et mondiale. Il se tient à la fine pointe de la technologie et valorise la mise à jour des connaissances des technologues. La collaboration et l’engagement de tous les intervenants favorisent la formation d’une équipe dynamique, compétente et professionnelle. Le développement du secteur de la tomographie par émission de positrons (TEP) et le recrutement de spécialistes ont accentué le rôle de leader en médecine nucléaire du Département, particulièrement en oncologie.</span></p> | |
| 3916 | +<p></span></div> | |
| 3917 | +<h2>Exigences</h2> | |
| 3918 | +<div class="default-text"><span></p> | |
| 3919 | +<p style="margin-bottom:12.0pt;text-align:justify;line-height:normal"><strong><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Diplôme et permis :</span></strong></p> | |
| 3920 | +<ul style="margin-bottom:12.0pt;text-align:justify;line-height:normal"> | |
| 3921 | +<li><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Diplôme d’études collégiale (DEC) technique avec spécialisation en technologie en médecine nucléaire.</span><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black"></span></li> | |
| 3922 | +<li><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Doit être membre de l’Ordre des technologues en imagerie médicale, en radio-oncologie et en électrophysiologie médicale du Québec (OTIMROEPMQ)</span></li> | |
| 3923 | +</ul> | |
| 3924 | +<p style="margin-bottom:12.0pt;text-align:justify;line-height:normal"> </p> | |
| 3925 | +<p style="margin-bottom:12.0pt;text-align:justify;line-height:normal"><strong><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Qualités et compétences recherchées :</span></strong></p> | |
| 3926 | +<ul style="margin-bottom:12.0pt;line-height:normal"> | |
| 3927 | +<li><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Autonomie, sens des responsabilités</span><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black"></span></li> | |
| 3928 | +<li><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Esprit de collaboration et travail d’équipe</span><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black"></span></li> | |
| 3929 | +<li><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Sens de la créativité et esprit d’innovation</span><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black"></span></li> | |
| 3930 | +<li><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Capacité d’influence</span><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black"></span></li> | |
| 3931 | +<li><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Orientation service à la clientèle et partenariat</span><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black"></span></li> | |
| 3932 | +<li><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Esprit d’analyse et de synthèse</span><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black"></span></li> | |
| 3933 | +<li><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Capacité d’adaptation et tolérance à l’ambiguïté </span></li> | |
| 3934 | +</ul> | |
| 3935 | +<p style="margin-bottom:12.0pt;text-align:justify;line-height:normal"> </p> | |
| 3936 | +<p style="margin-bottom:12.0pt;text-align:justify;line-height:normal"><strong><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Avantages sociaux :</span></strong></p> | |
| 3937 | +<ul style="margin-bottom:0cm;margin-bottom:.0001pt;line-height:normal"> | |
| 3938 | +<li><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Un environnement de travail stimulant où le travail d’équipe et la convivialité occupent une place importante </span></li> | |
| 3939 | +<li><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">4 semaines de vacances payées après 1 année de travail à temps complet </span></li> | |
| 3940 | +<li><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">13 congés fériés </span></li> | |
| 3941 | +<li><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">9.6 jours de maladie payés, monnayables en décembre de chaque année </span></li> | |
| 3942 | +<li><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Fonds de pension à prestations déterminées <br /></span></li> | |
| 3943 | +<li><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Régime d’assurances collectives <br /></span></li> | |
| 3944 | +<li><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Station de métro champ-de-mars reliée au CHUM par un tunnel </span></li> | |
| 3945 | +</ul> | |
| 3946 | +<p style="margin-bottom:12.0pt;line-height:normal"> </p> | |
| 3947 | +<p style="margin-bottom:12.0pt;text-align:justify;line-height:normal"><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Les candidat(e)s seront soumis à un processus de sélection.</span></p> | |
| 3948 | +<p style="margin-bottom:12.0pt;text-align:justify;line-height:normal"><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Nous remercions toutes les personnes qui poseront leur candidature, mais ne communiquerons qu’avec celles retenues pour un test ou une entrevue.</span></p> | |
| 3949 | +<p style="margin-bottom:12.0pt;text-align:justify;line-height:normal"><strong><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Diplôme obtenu hors Québec</span></strong><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black"> : Nous exigeons l’évaluation comparative des études émise par le ministère de l’Immigration de la Francisation et de l’Intégration : https://www.quebec.ca/immigration/travailler-quebec/faire-reconnaitre-competences-acquises-etranger/obtenir-evaluation-comparative. »</span></p> | |
| 3950 | +<p style="margin-bottom:12.0pt;text-align:justify;line-height:normal"><span style="font-size:9.0pt;font-family:'Verdana',sans-serif;color:black">Il est « essentiel » de joindre votre CV au présent formulaire pour que votre candidature soit considérée</span></p> | |
| 3951 | +<p></span></div> | |
| 3952 | + <p> | |
| 3953 | + <h2>Accès à l'égalité en emploi</h2> | |
| 3954 | + Conformément à la <b>Loi sur l'Accès à l'égalité en emploi</b>, tous les établissements de santé et de services sociaux | |
| 3955 | + appliquent un programme d'accès à l'égalité. De ce fait, les personnes issues des groupes visés | |
| 3956 | + (femme, autochtone, minorité visible, minorité ethnique et personne handicapée) sont encouragées à faire parvenir leur | |
| 3957 | + candidature. De plus, des mesures d'adaptation peuvent être offertes aux personnes handicapées en fonction de leurs | |
| 3958 | + besoins. Selon le contexte, le genre masculin ou féminin utilisé dans les affichages désigne aussi bien les femmes que | |
| 3959 | + les hommes. | |
| 3960 | + </p> | |
| 3961 | + </div> | |
| 3962 | + <hr><div class="conditions-de-travail"><div class="ct-row"><span class="ct-label">Catégorie :</span><span class="ct-value">Professionnel.le et technicien.ne de la santé et des services sociaux</span></div><div class="ct-row"><span class="ct-label">Période salariale :</span><span class="ct-value">Horaire</span></div><div class="ct-row"><span class="ct-label">Durée :</span><span class="ct-value">indéterminée</span></div><div class="ct-row"><span class="ct-label">Heures par semaine :</span><span class="ct-value">35</span></div><div class="ct-row"><span class="ct-label">Date d'affichage :</span><span class="ct-value">du 2026-06-03 à 2026-08-31</span></div></div> | |
| 3963 | + <div class="apply-buttons"> | |
| 3964 | + <div class="apply-buttons-1"> | |
| 3965 | + <h2>Cet emploi t'intéresse?</h2> | |
| 3966 | + <div class="job_application application"> | |
| 3967 | + | |
| 3968 | + <button id="applyButton_6a850ff2c0d8c" class="application_button button">Postuler</button> | |
| 3969 | + <script> | |
| 3970 | + document.getElementById('applyButton_6a850ff2c0d8c').addEventListener('click', function() { | |
| 3971 | + window.open('https://chum-recrutement.carrieresante.gouv.qc.ca/Emploi/Index/Consulter?code=2026-001568', '_blank'); | |
| 3972 | + }); | |
| 3973 | + </script> | |
| 3974 | + | |
| 3975 | + </div> | |
| 3976 | + </div> | |
| 3977 | + <div class="apply-buttons-2"> | |
| 3978 | + <h2>Tu as des questions ou besoin d’information?</h2> | |
| 3979 | + <div> | |
| 3980 | + <a href="https://chum.carrieresante.gouv.qc.ca/nous-joindre/" rel="noopener">Nous joindre</a> | |
| 3981 | + </div> | |
| 3982 | + </div> | |
| 3983 | + </div> | |
| 3984 | + | |
| 3985 | + </div> | |
| 3986 | + | |
| 3987 | +<div class="addtoany_share_save_container addtoany_content addtoany_content_bottom"><div class="addtoany_header">Partagez :</div><div class="a2a_kit a2a_kit_size_32 addtoany_list" data-a2a-url="https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2/" data-a2a-title="Technologue en imagerie médicale du domaine de la médecine nucléaire"><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2%2F&linkname=Technologue%20en%20imagerie%20m%C3%A9dicale%20du%20domaine%20de%20la%20m%C3%A9decine%20nucl%C3%A9aire" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2%2F&linkname=Technologue%20en%20imagerie%20m%C3%A9dicale%20du%20domaine%20de%20la%20m%C3%A9decine%20nucl%C3%A9aire" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2%2F&linkname=Technologue%20en%20imagerie%20m%C3%A9dicale%20du%20domaine%20de%20la%20m%C3%A9decine%20nucl%C3%A9aire" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2%2F&linkname=Technologue%20en%20imagerie%20m%C3%A9dicale%20du%20domaine%20de%20la%20m%C3%A9decine%20nucl%C3%A9aire" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2%2F&linkname=Technologue%20en%20imagerie%20m%C3%A9dicale%20du%20domaine%20de%20la%20m%C3%A9decine%20nucl%C3%A9aire" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share"></a></div></div> <strong>Partagez :</strong> <div class="a2a_kit a2a_kit_size_32 addtoany_list" data-a2a-url="https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2/" data-a2a-title="Technologue en imagerie médicale du domaine de la médecine nucléaire"><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2%2F&linkname=Technologue%20en%20imagerie%20m%C3%A9dicale%20du%20domaine%20de%20la%20m%C3%A9decine%20nucl%C3%A9aire" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2%2F&linkname=Technologue%20en%20imagerie%20m%C3%A9dicale%20du%20domaine%20de%20la%20m%C3%A9decine%20nucl%C3%A9aire" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2%2F&linkname=Technologue%20en%20imagerie%20m%C3%A9dicale%20du%20domaine%20de%20la%20m%C3%A9decine%20nucl%C3%A9aire" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2%2F&linkname=Technologue%20en%20imagerie%20m%C3%A9dicale%20du%20domaine%20de%20la%20m%C3%A9decine%20nucl%C3%A9aire" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2%2F&linkname=Technologue%20en%20imagerie%20m%C3%A9dicale%20du%20domaine%20de%20la%20m%C3%A9decine%20nucl%C3%A9aire" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share"></a></div> <div class="post__tags"> | |
| 3988 | + </div> | |
| 3989 | + | |
| 3990 | + </div> | |
| 3991 | + | |
| 3992 | + | |
| 3993 | + </article><!--end item--> | |
| 3994 | + </div> | |
| 3995 | + | |
| 3996 | + | |
| 3997 | + </div><!--end of row--> | |
| 3998 | + </div><!--end of container--> | |
| 3999 | +</section> | |
| 4000 | + | |
| 4001 | +<footer class="footer-6 unpad--bottom bg--secondary"> | |
| 4002 | + <div class="container"> | |
| 4003 | + <div class="row"> | |
| 4004 | + <div class="col-sm-6"><div id="block-17" class="widget widget_block sidebar__element"><p><span class="left-section"><br /> | |
| 4005 | +<span class="footer-t">Emplois disponibles</span></p> | |
| 4006 | +<p><span class="footer-s"><span class="link"><a href="https://chum.carrieresante.gouv.qc.ca/soins-infirmiers-et-cardiorespiratoires/" rel="noopener" >Soins infirmiers et cardiorespiratoires</a></span><br /> | |
| 4007 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/gestion/" rel="noopener" >Gestion</a></span><br /> | |
| 4008 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/personnel-de-ladministration/" rel="noopener" >Personnel de bureau,professionnel.le et technicien.ne de l'administration</a></span><br /> | |
| 4009 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/physique-et-genie-biomedical/" rel="noopener" >Physique et génie biomédical</a></span><br /> | |
| 4010 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/professionnel-le-et-technicien-ne-de-la-sante-et-des-services-sociaux/" rel="noopener" >Professionnel.le et technicien.ne de la santé et des services sociaux</a></span><br /> | |
| 4011 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/assistance-a-la-personne-services-et-metiers/" rel="noopener" >Assistance à la personne, emplois de services et métiers</a></span><br /> | |
| 4012 | +</span><br /></p> | |
| 4013 | +</div></div><div class="col-sm-6"><div id="block-22" class="widget widget_block sidebar__element"><div class="right-section"> | |
| 4014 | +<p><span class="footer"><a href="https://www.chumontreal.qc.ca/" target="_blank" rel="noopener" class="footer-t">Découvrir le CHUM</a><br /> | |
| 4015 | + <a href="https://www.chumontreal.qc.ca/enseignement-academie/stages-chum" rel="noopener" class="footer-t" target="_blank">Trouver un stage</a><br /> | |
| 4016 | + <a href="https://www.chumontreal.qc.ca/repertoire/service-benevolat-animation-loisirs" rel="noopener" class="footer-t" target="_blank">Devenir bénévole</a><br /> | |
| 4017 | +</span></p> | |
| 4018 | +<div class="footer-with-b"> | |
| 4019 | + <a href="https://chum.carrieresante.gouv.qc.ca/nous-joindre/" rel="noopener" class="footer-b">Nous joindre</a><br /> | |
| 4020 | + <a href="https://chum-recrutement.carrieresante.gouv.qc.ca" target="_blank" rel="noopener" class="footer-b">Dépose ton CV</a> | |
| 4021 | +</div> | |
| 4022 | +</div> | |
| 4023 | +</div></div><div class="clear"></div> </div><!--end of row--> | |
| 4024 | + </div><!--end of container--> | |
| 4025 | + <div class="footer__lower text-center-xs"> | |
| 4026 | + <div class="container"> | |
| 4027 | + <div class="row"> | |
| 4028 | + <div class="col-sm-3"> | |
| 4029 | + | |
| 4030 | + </div> | |
| 4031 | + <div class="col-sm-6 footer-stack-copyright"> | |
| 4032 | + <div class="menu-footer-menu-container"><ul id="menu-footer-menu" class="menu"><li id="menu-item-4840" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4840"><a href="https://chum.carrieresante.gouv.qc.ca/politique-de-confidentialite/">Politique de confidentialité</a></li> | |
| 4033 | +</ul></div> Copyright © 2026 - Makila <br> | |
| 4034 | + </div> | |
| 4035 | + <div class="col-sm-3 text-right text-center-xs"> | |
| 4036 | + | |
| 4037 | + </div> | |
| 4038 | + </div><!--end of row--> | |
| 4039 | + </div><!--end of container--> | |
| 4040 | + </div> | |
| 4041 | +</footer> | |
| 4042 | +</div><!-- /main-container --> | |
| 4043 | + | |
| 4044 | +<script type="text/javascript"> | |
| 4045 | +(function(){var s = document.getElementsByTagName("script")[0]; | |
| 4046 | +var b = document.createElement("script"); | |
| 4047 | +b.type = "text/javascript";b.async = true; | |
| 4048 | +b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js"; | |
| 4049 | +s.parentNode.insertBefore(b, s);})(); | |
| 4050 | +</script> | |
| 4051 | + | |
| 4052 | +<script type="speculationrules"> | |
| 4053 | +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/stack-child/*","/wp-content/themes/stack/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} | |
| 4054 | +</script> | |
| 4055 | +<!-- WP Job Manager Structured Data --> | |
| 4056 | +<script type="application/ld+json">{"@context":"http:\/\/schema.org\/","@type":"JobPosting","datePosted":"2026-06-03T00:00:00-04:00","validThrough":"2026-08-31T23:59:59-04:00","title":"Technologue en imagerie m\u00e9dicale du domaine de la m\u00e9decine nucl\u00e9aire","description":"<h2>Mandat<\/h2>\n<div class=\"default-text\"><span><\/p>\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:12.0pt;margin-left:0cm\"><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Faites partie d\u2019une \u00e9quipe qui transforme des images en r\u00e9ponses pour nos patients!<\/span><\/p>\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:12.0pt;margin-left:0cm;text-align:start\"><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Le CHUM est un h\u00f4pital universitaire \u00e0 la fois innovant et humain, au service des patient(e)s et du r\u00e9seau. Il offre les meilleurs soins, sp\u00e9cialis\u00e9s et sursp\u00e9cialis\u00e9s \u00e0 toute la population qu\u00e9b\u00e9coise. Gr\u00e2ce \u00e0 ses expertises uniques, la recherche et ses innovations, le CHUM am\u00e9liore la sant\u00e9 globale de la population. La communaut\u00e9 CHUM est port\u00e9e par l&rsquo;audace, nourrie par l&rsquo;apprentissage continu, unie par la collaboration et guid\u00e9e par la bienveillance. Travailler au CHUM, c&rsquo;est faire partie d&rsquo;une \u00e9quipe dynamique, humaine et engag\u00e9e, o\u00f9 chacun.ne contribue \u00e0 l&rsquo;excellence des soins et l&rsquo;avancement des connaissances, au profit de la population de tout le Qu\u00e9bec.\u00a0<\/span><\/p>\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:12.0pt;margin-left:0cm;text-align:start\"><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Nous sommes pr\u00e9sentement \u00e0 la recherche de technologues en m\u00e9decine nucl\u00e9aire pour combler les besoins au sein de l&rsquo;\u00e9quipe. Bien que l\u2019offre d\u2019emploi soit sur la liste de rappel, sachez que vous travaillerez \u00e0 la hauteur de vos disponibilit\u00e9s.<\/p>\n<p>Le technologue en m\u00e9decine nucl\u00e9aire pr\u00e9pare et administre des substances radioactives. Il suit la circulation de ces substances dans le corps humain et \u00e9tudie la physiologie des organes \u00e0 l\u2019aide d\u2019appareils pr\u00e9vus \u00e0 cette fin. Les images produites servent \u00e0 des fins diagnostiques et th\u00e9rapeutiques.<\/span><\/p>\n<p style=\"margin-top:0cm;margin-right:0cm;margin-bottom:12.0pt;margin-left:0cm;text-align:start\"><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Dans un milieu d\u2019enseignement et de recherche \u00e0 la fois clinique et fondamentale, l\u2019\u00e9quipe du D\u00e9partement de m\u00e9decine nucl\u00e9aire du CHUM s\u2019efforce d\u2019offrir \u00e0 chaque b\u00e9n\u00e9ficiaire des services d\u2019imagerie diagnostique. L\u2019\u00e9quipe m\u00e9dicale, les gestionnaires et les technologues ont \u00e0 c\u0153ur le bien-\u00eatre, le respect, la confidentialit\u00e9 et l\u2019\u00e9coute des patients. Le D\u00e9partement poursuit son rayonnement scientifique sur les sc\u00e8nes locale, nationale et mondiale. Il se tient \u00e0 la fine pointe de la technologie et valorise la mise \u00e0 jour des connaissances des technologues. La collaboration et l\u2019engagement de tous les intervenants favorisent la formation d\u2019une \u00e9quipe dynamique, comp\u00e9tente et professionnelle. Le d\u00e9veloppement du secteur de la tomographie par \u00e9mission de positrons (TEP) et le recrutement de sp\u00e9cialistes ont accentu\u00e9 le r\u00f4le de leader en m\u00e9decine nucl\u00e9aire du D\u00e9partement, particuli\u00e8rement en oncologie.<\/span><\/p>\n<p><\/span><\/div>\n<h2>Exigences<\/h2>\n<div class=\"default-text\"><span><\/p>\n<p style=\"margin-bottom:12.0pt;text-align:justify;line-height:normal\"><strong><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Dipl\u00f4me et permis :<\/span><\/strong><\/p>\n<ul style=\"margin-bottom:12.0pt;text-align:justify;line-height:normal\">\n<li><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Dipl\u00f4me d&rsquo;\u00e9tudes coll\u00e9giale (DEC) technique avec sp\u00e9cialisation en technologie en m\u00e9decine nucl\u00e9aire.<\/span><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\"><\/span><\/li>\n<li><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Doit \u00eatre membre de l&rsquo;Ordre des technologues en imagerie m\u00e9dicale, en radio-oncologie et en \u00e9lectrophysiologie m\u00e9dicale du Qu\u00e9bec (OTIMROEPMQ)<\/span><\/li>\n<\/ul>\n<p style=\"margin-bottom:12.0pt;text-align:justify;line-height:normal\">\u00a0<\/p>\n<p style=\"margin-bottom:12.0pt;text-align:justify;line-height:normal\"><strong><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Qualit\u00e9s et comp\u00e9tences recherch\u00e9es :<\/span><\/strong><\/p>\n<ul style=\"margin-bottom:12.0pt;line-height:normal\">\n<li><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Autonomie, sens des responsabilit\u00e9s<\/span><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\"><\/span><\/li>\n<li><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Esprit de collaboration et travail d\u2019\u00e9quipe<\/span><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\"><\/span><\/li>\n<li><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Sens de la cr\u00e9ativit\u00e9 et esprit d&rsquo;innovation<\/span><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\"><\/span><\/li>\n<li><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Capacit\u00e9 d\u2019influence<\/span><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\"><\/span><\/li>\n<li><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Orientation service \u00e0 la client\u00e8le et partenariat<\/span><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\"><\/span><\/li>\n<li><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Esprit d\u2019analyse et de synth\u00e8se<\/span><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\"><\/span><\/li>\n<li><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Capacit\u00e9 d\u2019adaptation et tol\u00e9rance \u00e0 l\u2019ambigu\u00eft\u00e9\u00a0<\/span><\/li>\n<\/ul>\n<p style=\"margin-bottom:12.0pt;text-align:justify;line-height:normal\">\u00a0<\/p>\n<p style=\"margin-bottom:12.0pt;text-align:justify;line-height:normal\"><strong><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Avantages sociaux :<\/span><\/strong><\/p>\n<ul style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:normal\">\n<li><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Un environnement de travail stimulant o\u00f9 le travail d\u2019\u00e9quipe et la convivialit\u00e9 occupent une place importante\u00a0<\/span><\/li>\n<li><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">4 semaines de vacances pay\u00e9es apr\u00e8s 1 ann\u00e9e de travail \u00e0 temps complet\u00a0<\/span><\/li>\n<li><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">13 cong\u00e9s f\u00e9ri\u00e9s\u00a0<\/span><\/li>\n<li><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">9.6 jours de maladie pay\u00e9s, monnayables en d\u00e9cembre de chaque ann\u00e9e\u00a0<\/span><\/li>\n<li><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Fonds de pension \u00e0 prestations d\u00e9termin\u00e9es\u00a0<br \/><\/span><\/li>\n<li><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">R\u00e9gime d\u2019assurances collectives\u00a0<br \/><\/span><\/li>\n<li><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Station de m\u00e9tro champ-de-mars reli\u00e9e au CHUM par un tunnel\u00a0<\/span><\/li>\n<\/ul>\n<p style=\"margin-bottom:12.0pt;line-height:normal\">\u00a0<\/p>\n<p style=\"margin-bottom:12.0pt;text-align:justify;line-height:normal\"><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Les candidat(e)s seront soumis \u00e0 un processus de s\u00e9lection.<\/span><\/p>\n<p style=\"margin-bottom:12.0pt;text-align:justify;line-height:normal\"><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Nous remercions toutes les personnes qui poseront leur candidature, mais ne communiquerons qu&rsquo;avec celles retenues pour un test ou une entrevue.<\/span><\/p>\n<p style=\"margin-bottom:12.0pt;text-align:justify;line-height:normal\"><strong><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Dipl\u00f4me obtenu hors Qu\u00e9bec<\/span><\/strong><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">\u00a0: Nous exigeons l&rsquo;\u00e9valuation comparative des \u00e9tudes \u00e9mise par le minist\u00e8re de l&rsquo;Immigration de la Francisation et de l&rsquo;Int\u00e9gration : https:\/\/www.quebec.ca\/immigration\/travailler-quebec\/faire-reconnaitre-competences-acquises-etranger\/obtenir-evaluation-comparative.\u00a0\u00bb<\/span><\/p>\n<p style=\"margin-bottom:12.0pt;text-align:justify;line-height:normal\"><span style=\"font-size:9.0pt;font-family:&#039;Verdana&#039;,sans-serif;color:black\">Il est \u00ab\u00a0essentiel\u00a0\u00bb de joindre votre CV au pr\u00e9sent formulaire pour que votre candidature soit consid\u00e9r\u00e9e<\/span><\/p>\n<p><\/span><\/div>\n","employmentType":["PART_TIME"],"hiringOrganization":{"@type":"Organization","name":""},"identifier":{"@type":"PropertyValue","name":"","value":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/technologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2\/"},"jobLocation":{"@type":"Place","address":"CHUM"},"directApply":true,"mainEntityOfPage":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/technologue-en-imagerie-medicale-du-domaine-de-la-medecine-nucleaire-2\/"}}</script> <script> | |
| 4057 | + const lazyloadRunObserver = () => { | |
| 4058 | + const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); | |
| 4059 | + const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { | |
| 4060 | + entries.forEach( ( entry ) => { | |
| 4061 | + if ( entry.isIntersecting ) { | |
| 4062 | + let lazyloadBackground = entry.target; | |
| 4063 | + if( lazyloadBackground ) { | |
| 4064 | + lazyloadBackground.classList.add( 'e-lazyloaded' ); | |
| 4065 | + } | |
| 4066 | + lazyloadBackgroundObserver.unobserve( entry.target ); | |
| 4067 | + } | |
| 4068 | + }); | |
| 4069 | + }, { rootMargin: '200px 0px 200px 0px' } ); | |
| 4070 | + lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { | |
| 4071 | + lazyloadBackgroundObserver.observe( lazyloadBackground ); | |
| 4072 | + } ); | |
| 4073 | + }; | |
| 4074 | + const events = [ | |
| 4075 | + 'DOMContentLoaded', | |
| 4076 | + 'elementor/lazyload/observe', | |
| 4077 | + ]; | |
| 4078 | + events.forEach( ( event ) => { | |
| 4079 | + document.addEventListener( event, lazyloadRunObserver ); | |
| 4080 | + } ); | |
| 4081 | + </script> | |
| 4082 | + <style id="global-styles-inline-css"> | |
| 4083 | +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-family--montserrat: Montserrat;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;} | |
| 4084 | +/*# sourceURL=global-styles-inline-css */ | |
| 4085 | +</style> | |
| 4086 | +<script id="wp-hooks-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script> | |
| 4087 | +<script id="wp-i18n-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script> | |
| 4088 | +<script id="wp-i18n-js-after"> | |
| 4089 | +wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); | |
| 4090 | +//# sourceURL=wp-i18n-js-after | |
| 4091 | +</script> | |
| 4092 | +<script id="swv-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.1.6"></script> | |
| 4093 | +<script id="contact-form-7-js-translations"> | |
| 4094 | +( function( domain, translations ) { | |
| 4095 | + var localeData = translations.locale_data[ domain ] || translations.locale_data.messages; | |
| 4096 | + localeData[""].domain = domain; | |
| 4097 | + wp.i18n.setLocaleData( localeData, domain ); | |
| 4098 | +} )( "contact-form-7", {"translation-revision-date":"2026-07-27 15:37:27+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"This contact form is placed in the wrong place.":["Ce formulaire de contact est plac\u00e9 dans un mauvais endroit."],"Error:":["Erreur\u00a0:"]}},"comment":{"reference":"includes\/js\/index.js"}} ); | |
| 4099 | +//# sourceURL=contact-form-7-js-translations | |
| 4100 | +</script> | |
| 4101 | +<script id="contact-form-7-js-before"> | |
| 4102 | +var wpcf7 = { | |
| 4103 | + "api": { | |
| 4104 | + "root": "https:\/\/chum.carrieresante.gouv.qc.ca\/wp-json\/", | |
| 4105 | + "namespace": "contact-form-7\/v1" | |
| 4106 | + }, | |
| 4107 | + "cached": 1 | |
| 4108 | +}; | |
| 4109 | +//# sourceURL=contact-form-7-js-before | |
| 4110 | +</script> | |
| 4111 | +<script id="contact-form-7-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.6"></script> | |
| 4112 | +<script id="wpmssab-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/wpmss/wpmssab.min.js?ver=1708979088"></script> | |
| 4113 | +<script id="SmoothScroll-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/mousewheel-smooth-scroll/js/SmoothScroll.min.js?ver=1.5.1"></script> | |
| 4114 | +<script id="wpmss-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/wpmss/wpmss.min.js?ver=1708979088"></script> | |
| 4115 | +<script id="wpcf7cf-scripts-js-extra"> | |
| 4116 | +var wpcf7cf_global_settings = {"ajaxurl":"https://chum.carrieresante.gouv.qc.ca/wp-admin/admin-ajax.php"}; | |
| 4117 | +//# sourceURL=wpcf7cf-scripts-js-extra | |
| 4118 | +</script> | |
| 4119 | +<script id="wpcf7cf-scripts-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/cf7-conditional-fields/js/scripts.js?ver=2.7.8"></script> | |
| 4120 | +<script id="google-recaptcha-js" src="https://www.google.com/recaptcha/api.js?render=6LeEyacoAAAAAFzI4jY6030tift5n1S0tecQWMkd&ver=3.0"></script> | |
| 4121 | +<script id="wp-polyfill-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0"></script> | |
| 4122 | +<script id="wpcf7-recaptcha-js-before"> | |
| 4123 | +var wpcf7_recaptcha = { | |
| 4124 | + "sitekey": "6LeEyacoAAAAAFzI4jY6030tift5n1S0tecQWMkd", | |
| 4125 | + "actions": { | |
| 4126 | + "homepage": "homepage", | |
| 4127 | + "contactform": "contactform" | |
| 4128 | + } | |
| 4129 | +}; | |
| 4130 | +//# sourceURL=wpcf7-recaptcha-js-before | |
| 4131 | +</script> | |
| 4132 | +<script id="wpcf7-recaptcha-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/contact-form-7/modules/recaptcha/index.js?ver=6.1.6"></script> | |
| 4133 | +<script id="ebor-parallax-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/parallax.js?ver=10.5.21"></script> | |
| 4134 | +<script id="ebor-isotope-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/isotope.js?ver=10.5.21"></script> | |
| 4135 | +<script id="final-countdown-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/final-countdown.js?ver=10.5.21"></script> | |
| 4136 | +<script id="flickity-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/flickity.js?ver=10.5.21"></script> | |
| 4137 | +<script id="granim-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/granim.js?ver=10.5.21"></script> | |
| 4138 | +<script id="smooth-scroll-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/smooth-scroll.js?ver=10.5.21"></script> | |
| 4139 | +<script id="spectragram-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/spectragram.js?ver=10.5.21"></script> | |
| 4140 | +<script id="twitter-post-fetcher-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/twitter-post-fetcher.js?ver=10.5.21"></script> | |
| 4141 | +<script id="ytplayer-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/ytplayer.js?ver=10.5.21"></script> | |
| 4142 | +<script id="easy-pie-chart-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/easy-pie-chart.js?ver=10.5.21"></script> | |
| 4143 | +<script id="steps-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/steps.js?ver=10.5.21"></script> | |
| 4144 | +<script id="lightbox-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/lightbox.js?ver=10.5.21"></script> | |
| 4145 | +<script id="ebor-scripts-wp-js-extra"> | |
| 4146 | +var stack_data = {"access_token":"replaceWithYourOwn","client_id":"replaceWithYourOwn","typed_speed":"100","map_marker":"https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/img/mapmarker.png","map_marker_title":"Stack","lightbox_text":"Image %1 of %2"}; | |
| 4147 | +//# sourceURL=ebor-scripts-wp-js-extra | |
| 4148 | +</script> | |
| 4149 | +<script id="ebor-scripts-wp-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/scripts_wp.js?ver=10.5.21"></script> | |
| 4150 | +<script id="ebor-scripts-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/scripts.js?ver=10.5.21"></script> | |
| 4151 | +<script id="wp-job-manager-job-application-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager/assets/dist/js/job-application.js?ver=a2e73d680f0b4392373b"></script> | |
| 4152 | +<script id="wp-emoji-settings" type="application/json"> | |
| 4153 | +{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://chum.carrieresante.gouv.qc.ca/wp-includes/js/wp-emoji-release.min.js?ver=7.0.4"}} | |
| 4154 | +</script> | |
| 4155 | +<script type="module"> | |
| 4156 | +/*! This file is auto-generated */ | |
| 4157 | +var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))}); | |
| 4158 | +//# sourceURL=https://chum.carrieresante.gouv.qc.ca/wp-includes/js/wp-emoji-loader.min.js | |
| 4159 | +</script> | |
| 4160 | +<script></script></body> | |
| 4161 | +</html> | |
| 4162 | +<!-- Cached by WP-Optimize (gzip) - https://teamupdraft.com/wp-optimize/ - Last modified: 18 August 2026 21h07 (America/Toronto UTC:-5) --> | |
added
tests/fixtures/chum/11c79adc26615ea860b9.html
+4178 −0
@@ -0,0 +1,4178 @@ | ||
| 1 | +<!doctype html> | |
| 2 | +<html lang="fr-FR"> | |
| 3 | + | |
| 4 | +<head> | |
| 5 | + <meta charset="UTF-8"> | |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| 7 | + <meta http-equiv="X-UA-Compatible" content="IE=edge, IE=11, IE=10"> | |
| 8 | + <link rel="pingback" href="https://chum.carrieresante.gouv.qc.ca/xmlrpc.php" /> | |
| 9 | + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> | |
| 10 | +<link rel="alternate" hreflang="fr" href="https://chum.carrieresante.gouv.qc.ca/poste/agent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2/" /> | |
| 11 | +<link rel="alternate" hreflang="x-default" href="https://chum.carrieresante.gouv.qc.ca/poste/agent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2/" /> | |
| 12 | +<script id="cookieyes" type="text/javascript" src="https://cdn-cookieyes.com/client_data/a02c54dd1258cab5a44db8ca534bda4c/script.js"></script> | |
| 13 | + <!-- This site is optimized with the Yoast SEO plugin v27.9 - https://yoast.com/product/yoast-seo-wordpress/ --> | |
| 14 | + <title>Agent(e) planification programmation et recherche - Commissaire aux plaintes - CHUM</title> | |
| 15 | + <link rel="canonical" href="https://chum.carrieresante.gouv.qc.ca/poste/agent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2/" /> | |
| 16 | + <meta property="og:locale" content="fr_FR" /> | |
| 17 | + <meta property="og:type" content="article" /> | |
| 18 | + <meta property="og:title" content="Agent(e) planification programmation et recherche - Commissaire aux plaintes - CHUM" /> | |
| 19 | + <meta property="og:description" content="Mandat Le ou la commissaire aux plaintes et à la qualité des services invite les personnes intéressées et qui possèdent les exigences..." /> | |
| 20 | + <meta property="og:url" content="https://chum.carrieresante.gouv.qc.ca/poste/agent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2/" /> | |
| 21 | + <meta property="og:site_name" content="CHUM" /> | |
| 22 | + <meta property="article:modified_time" content="2026-08-06T13:40:15+00:00" /> | |
| 23 | + <meta name="twitter:card" content="summary_large_image" /> | |
| 24 | + <meta name="twitter:label1" content="Durée de lecture estimée" /> | |
| 25 | + <meta name="twitter:data1" content="6 minutes" /> | |
| 26 | + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/agent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2\/","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/agent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2\/","name":"Agent(e) planification programmation et recherche - Commissaire aux plaintes - CHUM","isPartOf":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#website"},"datePublished":"2026-08-06T04:00:00+00:00","dateModified":"2026-08-06T13:40:15+00:00","breadcrumb":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/agent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/agent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/agent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/chum.carrieresante.gouv.qc.ca\/"},{"@type":"ListItem","position":2,"name":"Agent(e) planification programmation et recherche – Commissaire aux plaintes"}]},{"@type":"WebSite","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#website","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/","name":"Makila.ai","description":"Carrière en santé","publisher":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/chum.carrieresante.gouv.qc.ca\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#organization","name":"Services Makila inc.","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#\/schema\/logo\/image\/","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/wp-content\/uploads\/2020\/10\/Logo-Makila-Dark-150.png","contentUrl":"https:\/\/chum.carrieresante.gouv.qc.ca\/wp-content\/uploads\/2020\/10\/Logo-Makila-Dark-150.png","width":150,"height":43,"caption":"Services Makila inc."},"image":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/makila-ai\/"]}]}</script> | |
| 27 | + <!-- / Yoast SEO plugin. --> | |
| 28 | + | |
| 29 | + | |
| 30 | +<link rel='dns-prefetch' href='//static.addtoany.com' /> | |
| 31 | +<link rel='dns-prefetch' href='//code.jquery.com' /> | |
| 32 | +<link rel='dns-prefetch' href='//use.fontawesome.com' /> | |
| 33 | +<link rel='dns-prefetch' href='//fonts.googleapis.com' /> | |
| 34 | +<link href='https://fonts.gstatic.com' crossorigin rel='preconnect' /> | |
| 35 | +<link rel="alternate" type="application/rss+xml" title="CHUM » Flux" href="https://chum.carrieresante.gouv.qc.ca/feed/" /> | |
| 36 | +<link rel="alternate" type="application/rss+xml" title="CHUM » Flux des commentaires" href="https://chum.carrieresante.gouv.qc.ca/comments/feed/" /> | |
| 37 | +<link rel="alternate" type="application/rss+xml" title="CHUM » Agent(e) planification programmation et recherche – Commissaire aux plaintes Flux des commentaires" href="https://chum.carrieresante.gouv.qc.ca/poste/agent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2/feed/" /> | |
| 38 | +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://chum.carrieresante.gouv.qc.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fagent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2%2F" /> | |
| 39 | +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://chum.carrieresante.gouv.qc.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fagent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2%2F&format=xml" /> | |
| 40 | +<style id="wp-img-auto-sizes-contain-inline-css"> | |
| 41 | +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} | |
| 42 | +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */ | |
| 43 | +</style> | |
| 44 | +<link rel='stylesheet' id='reusablec-block-css-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/reusable-content-blocks/includes/css/reusablec-block.css?ver=7.0.4' media='all' /> | |
| 45 | +<style id="wp-emoji-styles-inline-css"> | |
| 46 | + | |
| 47 | + img.wp-smiley, img.emoji { | |
| 48 | + display: inline !important; | |
| 49 | + border: none !important; | |
| 50 | + box-shadow: none !important; | |
| 51 | + height: 1em !important; | |
| 52 | + width: 1em !important; | |
| 53 | + margin: 0 0.07em !important; | |
| 54 | + vertical-align: -0.1em !important; | |
| 55 | + background: none !important; | |
| 56 | + padding: 0 !important; | |
| 57 | + } | |
| 58 | +/*# sourceURL=wp-emoji-styles-inline-css */ | |
| 59 | +</style> | |
| 60 | +<style id="wp-block-library-inline-css"> | |
| 61 | +:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} | |
| 62 | +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */ | |
| 63 | +</style> | |
| 64 | +<style id="classic-theme-styles-inline-css"> | |
| 65 | +/*! This file is auto-generated */ | |
| 66 | +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} | |
| 67 | +/*# sourceURL=/wp-includes/css/classic-themes.min.css */ | |
| 68 | +</style> | |
| 69 | +<style id="wp-block-styles-placeholder-inline-css"> | |
| 70 | +:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the block styles printed at wp_footer." } | |
| 71 | +/*# sourceURL=wp-block-styles-placeholder-inline-css */ | |
| 72 | +</style> | |
| 73 | +<style id="font-awesome-svg-styles-default-inline-css"> | |
| 74 | +.svg-inline--fa { | |
| 75 | + display: inline-block; | |
| 76 | + height: 1em; | |
| 77 | + overflow: visible; | |
| 78 | + vertical-align: -.125em; | |
| 79 | +} | |
| 80 | +/*# sourceURL=font-awesome-svg-styles-default-inline-css */ | |
| 81 | +</style> | |
| 82 | +<link rel='stylesheet' id='font-awesome-svg-styles-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/font-awesome/v6.4.2/css/svg-with-js.css' media='all' /> | |
| 83 | +<style id="font-awesome-svg-styles-inline-css"> | |
| 84 | + .wp-block-font-awesome-icon svg::before, | |
| 85 | + .wp-rich-text-font-awesome-icon svg::before {content: unset;} | |
| 86 | +/*# sourceURL=font-awesome-svg-styles-inline-css */ | |
| 87 | +</style> | |
| 88 | +<style id="wp-global-styles-placeholder-inline-css"> | |
| 89 | +:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the global-styles printed at wp_footer." } | |
| 90 | +/*# sourceURL=wp-global-styles-placeholder-inline-css */ | |
| 91 | +</style> | |
| 92 | +<link rel='stylesheet' id='contact-form-7-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.6' media='all' /> | |
| 93 | +<link rel='stylesheet' id='select2-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager/assets/lib/select2/select2.min.css?ver=4.0.10' media='all' /> | |
| 94 | +<link rel='stylesheet' id='wp-job-manager-frontend-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager/assets/dist/css/frontend.css?ver=dfd3b8d2ce68f47df57d' media='all' /> | |
| 95 | +<link rel='stylesheet' id='wpml-legacy-horizontal-list-0-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/sitepress-multilingual-cms/templates/language-switchers/legacy-list-horizontal/style.min.css?ver=1' media='all' /> | |
| 96 | +<link rel='stylesheet' id='wpml-menu-item-0-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/sitepress-multilingual-cms/templates/language-switchers/menu-item/style.min.css?ver=1' media='all' /> | |
| 97 | +<link rel='stylesheet' id='job-alerts-frontend-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager-alerts/assets/dist/css/frontend.css?ver=3.2.0' media='all' /> | |
| 98 | +<link rel='stylesheet' id='job-alerts-frontend-default-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager-alerts/assets/dist/css/frontend.default.css?ver=3.2.0' media='all' /> | |
| 99 | +<link rel='stylesheet' id='jquery-ui-css' href='//code.jquery.com/ui/1.13.3/themes/smoothness/jquery-ui.min.css?ver=1.13.3' media='all' /> | |
| 100 | +<link rel='stylesheet' id='jm-application-deadline-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager-application-deadline/assets/dist/css/frontend.css?ver=1.3.0' media='' /> | |
| 101 | +<link rel='stylesheet' id='stack-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style.css?ver=7.0.4' media='all' /> | |
| 102 | +<link rel='stylesheet' id='stack-child-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack-child/style.css?ver=10.5.21' media='all' /> | |
| 103 | +<link rel='stylesheet' id='font-awesome-official-css' href='https://use.fontawesome.com/releases/v6.4.2/css/all.css' media='all' integrity="sha384-blOohCVdhjmtROpu8+CfTnUWham9nkX7P7OZQMst+RUnhtoY/9qemFAkIKOYxDI3" crossorigin="anonymous" /> | |
| 104 | +<link rel='stylesheet' id='addtoany-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/add-to-any/addtoany.min.css?ver=1.16' media='all' /> | |
| 105 | +<link rel='stylesheet' id='cf7cf-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/cf7-conditional-fields/style.css?ver=2.7.8' media='all' /> | |
| 106 | +<link rel='stylesheet' id='ebor-google-font-css' href='//fonts.googleapis.com/css?family=Lato%3A200%2C300%2C400%2C400i%2C500%2C600%2C700%7CMerriweather%3A300%2C300i%7CMaterial+Icons&ver=10.5.21' media='all' /> | |
| 107 | +<link rel='stylesheet' id='bootstrap-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/bootstrap.css?ver=10.5.21' media='all' /> | |
| 108 | +<link rel='stylesheet' id='ebor-icons-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/icons.css?ver=10.5.21' media='all' /> | |
| 109 | +<link rel='stylesheet' id='ebor-plugins-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/plugins.css?ver=10.5.21' media='all' /> | |
| 110 | +<link rel='stylesheet' id='ebor-theme-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/theme.css?ver=10.5.21' media='all' /> | |
| 111 | +<link rel='stylesheet' id='ebor-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack-child/style.css?ver=10.5.21' media='all' /> | |
| 112 | +<style id="ebor-style-inline-css"> | |
| 113 | + | |
| 114 | + .btn--primary .btn__text, .btn--primary:visited .btn__text { | |
| 115 | + color: #000000; | |
| 116 | + } | |
| 117 | + input[type].btn--primary, | |
| 118 | + .pos-fixed.bar--transparent.bg--primary, | |
| 119 | + .ebor-cart-count, .woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover { | |
| 120 | + background: #16375e; | |
| 121 | + } | |
| 122 | + .pos-fixed.bar--transparent.bg--secondary { | |
| 123 | + background: #FAFAFA; | |
| 124 | + } | |
| 125 | + .pos-fixed.bar--transparent.bg--dark { | |
| 126 | + background: #252525; | |
| 127 | + } | |
| 128 | + .pos-fixed.bar--transparent.bg--primary-1 { | |
| 129 | + background: #34acaa; | |
| 130 | + } | |
| 131 | + .bg--white h1, .bg--white h2, .bg--white h3, .bg--white h4, .bg--white h5, .bg--white h6, .bg--white i, .mobile-header .cart-link { | |
| 132 | + color: #252525; | |
| 133 | + } | |
| 134 | + @media all and (max-width:767px) { | |
| 135 | + .bar.bg--dark.bar--mobile-sticky[data-scroll-class*="fixed"].pos-fixed, | |
| 136 | + .bar.bg--dark.bar--mobile-sticky[data-scroll-class*="fixed"]+.bar.pos-fixed { | |
| 137 | + background: #252525; | |
| 138 | + } | |
| 139 | + .bar.bg--secondary.bar--mobile-sticky[data-scroll-class*="fixed"].pos-fixed, | |
| 140 | + .bar.bg--secondary.bar--mobile-sticky[data-scroll-class*="fixed"]+.bar.pos-fixed { | |
| 141 | + background: #FAFAFA; | |
| 142 | + } | |
| 143 | + } | |
| 144 | + .thumbnails-slider .thumbnail-trigger.active img { | |
| 145 | + border: 1px solid #16375e; | |
| 146 | + } | |
| 147 | + .menu-horizontal > li > a, .menu-horizontal > li > span, .menu-horizontal > li > .modal-instance > .modal-trigger { | |
| 148 | + font-size: 1em; | |
| 149 | + } | |
| 150 | + .woocommerce #respond input#submit.alt, | |
| 151 | + .woocommerce a.button.alt, | |
| 152 | + .woocommerce button.button.alt, | |
| 153 | + .woocommerce input.button.alt, | |
| 154 | + .woocommerce #respond input#submit, | |
| 155 | + .woocommerce a.button, | |
| 156 | + .woocommerce button.button, | |
| 157 | + .woocommerce input.button { | |
| 158 | + background: #16375e; | |
| 159 | + color: #fff; | |
| 160 | + transition: 0.1s linear; | |
| 161 | + } | |
| 162 | + .woocommerce #respond input#submit.alt:hover, | |
| 163 | + .woocommerce a.button.alt:hover, | |
| 164 | + .woocommerce button.button.alt:hover, | |
| 165 | + .woocommerce input.button.alt:hover, | |
| 166 | + .woocommerce #respond input#submit:hover, | |
| 167 | + .woocommerce a.button:hover, | |
| 168 | + .woocommerce button.button:hover, | |
| 169 | + .woocommerce input.button:hover { | |
| 170 | + color: #fff; | |
| 171 | + opacity: 0.9; | |
| 172 | + background: #16375e; | |
| 173 | + transform: translate3d(0, -2px, 0); | |
| 174 | + -webkit-transform: translate3d(0, -2px, 0); | |
| 175 | + } | |
| 176 | + | |
| 177 | + .menu-horizontal > li:not(:hover) > a, .menu-horizontal > li:not(:hover) > span, | |
| 178 | + .menu-horizontal > li:not(:hover) > .modal-instance > .modal-trigger { | |
| 179 | + opacity: 0.85 | |
| 180 | + } | |
| 181 | + .menu-vertical li:not(:hover):not(.dropdown--active) { | |
| 182 | + opacity: .75; | |
| 183 | + } | |
| 184 | + | |
| 185 | +/*# sourceURL=ebor-style-inline-css */ | |
| 186 | +</style> | |
| 187 | +<link rel='stylesheet' id='ebor-iconsmind-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/iconsmind.css?ver=10.5.21' media='all' /> | |
| 188 | +<link rel='stylesheet' id='font-awesome-official-v4shim-css' href='https://use.fontawesome.com/releases/v6.4.2/css/v4-shims.css' media='all' integrity="sha384-IqMDcR2qh8kGcGdRrxwop5R2GiUY5h8aDR/LhYxPYiXh3sAAGGDkFvFqWgFvTsTd" crossorigin="anonymous" /> | |
| 189 | +<script id="addtoany-core-js-before"> | |
| 190 | +window.a2a_config=window.a2a_config||{};a2a_config.callbacks=[];a2a_config.overlays=[];a2a_config.templates={};a2a_localize = { | |
| 191 | + Share: "Partager", | |
| 192 | + Save: "Enregistrer", | |
| 193 | + Subscribe: "S'abonner", | |
| 194 | + Email: "E-mail", | |
| 195 | + Bookmark: "Marque-page", | |
| 196 | + ShowAll: "Montrer tout", | |
| 197 | + ShowLess: "Montrer moins", | |
| 198 | + FindServices: "Trouver des service(s)", | |
| 199 | + FindAnyServiceToAddTo: "Trouver instantanément des services à ajouter à", | |
| 200 | + PoweredBy: "Propulsé par", | |
| 201 | + ShareViaEmail: "Partager par e-mail", | |
| 202 | + SubscribeViaEmail: "S’abonner par e-mail", | |
| 203 | + BookmarkInYourBrowser: "Ajouter un signet dans votre navigateur", | |
| 204 | + BookmarkInstructions: "Appuyez sur Ctrl+D ou \u2318+D pour mettre cette page en signet", | |
| 205 | + AddToYourFavorites: "Ajouter à vos favoris", | |
| 206 | + SendFromWebOrProgram: "Envoyer depuis n’importe quelle adresse e-mail ou logiciel e-mail", | |
| 207 | + EmailProgram: "Programme d’e-mail", | |
| 208 | + More: "Plus…", | |
| 209 | + ThanksForSharing: "Merci de partager !", | |
| 210 | + ThanksForFollowing: "Merci de nous suivre !" | |
| 211 | +}; | |
| 212 | + | |
| 213 | + | |
| 214 | +//# sourceURL=addtoany-core-js-before | |
| 215 | +</script> | |
| 216 | +<script id="addtoany-core-js" defer src="https://static.addtoany.com/menu/page.js"></script> | |
| 217 | +<script id="jquery-core-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script> | |
| 218 | +<script id="jquery-migrate-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script> | |
| 219 | +<script id="addtoany-jquery-js" defer src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/add-to-any/addtoany.min.js?ver=1.1"></script> | |
| 220 | +<script id="wpml-browser-redirect-js-extra"> | |
| 221 | +var wpml_browser_redirect_params = {"pageLanguage":"fr","languageUrls":{"fr_fr":"https://chum.carrieresante.gouv.qc.ca/poste/agent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2/","fr":"https://chum.carrieresante.gouv.qc.ca/poste/agent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2/"},"cookie":{"name":"_icl_visitor_lang_js","domain":"chum.carrieresante.gouv.qc.ca","path":"/","expiration":24}}; | |
| 222 | +//# sourceURL=wpml-browser-redirect-js-extra | |
| 223 | +</script> | |
| 224 | +<script id="wpml-browser-redirect-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/sitepress-multilingual-cms/dist/js/browser-redirect/app.js?ver=495000"></script> | |
| 225 | +<script></script><link rel="https://api.w.org/" href="https://chum.carrieresante.gouv.qc.ca/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://chum.carrieresante.gouv.qc.ca/wp-json/wp/v2/job-listings/55395" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://chum.carrieresante.gouv.qc.ca/xmlrpc.php?rsd" /> | |
| 226 | +<meta name="generator" content="WordPress 7.0.4" /> | |
| 227 | +<link rel='shortlink' href='https://chum.carrieresante.gouv.qc.ca/?p=55395' /> | |
| 228 | +<meta name="generator" content="WPML ver:4.9.5 stt:1,4;" /> | |
| 229 | +<meta name="generator" content="Elementor 4.1.4; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"> | |
| 230 | + <style> | |
| 231 | + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 232 | + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 233 | + background-image: none !important; | |
| 234 | + } | |
| 235 | + @media screen and (max-height: 1024px) { | |
| 236 | + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 237 | + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 238 | + background-image: none !important; | |
| 239 | + } | |
| 240 | + } | |
| 241 | + @media screen and (max-height: 640px) { | |
| 242 | + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 243 | + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 244 | + background-image: none !important; | |
| 245 | + } | |
| 246 | + } | |
| 247 | + </style> | |
| 248 | + <meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/> | |
| 249 | +<script type="text/javascript" id="sns_global_scripts_in_head">// JavaScript to handle the "Select All" for Statut De L'Emploi | |
| 250 | +jQuery(document).ready(function($) { | |
| 251 | + $('#select-all-StatutDeLEmploi').click(function(e) { | |
| 252 | + e.preventDefault(); | |
| 253 | + var checkboxGroup = $(this).closest('form').find('[name="StatutDeLEmploi[]"]'); | |
| 254 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 255 | + checkboxGroup.prop('checked', isChecked); | |
| 256 | + if (isChecked) { | |
| 257 | + $(this).text('Déselectionner tout'); | |
| 258 | + } else { | |
| 259 | + $(this).text('Sélectionner tout'); | |
| 260 | + } | |
| 261 | + }); | |
| 262 | + | |
| 263 | + $('[name="StatutDeLEmploi[]"]').change(function() { | |
| 264 | + var allChecked = $('[name="StatutDeLEmploi[]"]:checked').length === $('[name="StatutDeLEmploi[]"]').length; | |
| 265 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 266 | + $('#select-all-StatutDeLEmploi').text(linkText); | |
| 267 | + }); | |
| 268 | +}); | |
| 269 | +// JavaScript to handle the "Select All" for Territoires | |
| 270 | +jQuery(document).ready(function($) { | |
| 271 | + $('#select-all-Territoires').click(function(e) { | |
| 272 | + e.preventDefault(); | |
| 273 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires[]"]'); | |
| 274 | + | |
| 275 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 276 | + checkboxGroup.prop('checked', isChecked); | |
| 277 | + | |
| 278 | + if (isChecked) { | |
| 279 | + $(this).text('Déselectionner tout'); | |
| 280 | + } else { | |
| 281 | + $(this).text('Sélectionner tout'); | |
| 282 | + } | |
| 283 | + }); | |
| 284 | + | |
| 285 | + | |
| 286 | + $('[name="Territoires[]"]').change(function() { | |
| 287 | + var allChecked = $('[name="Territoires[]"]:checked').length === $('[name="Territoires[]"]').length; | |
| 288 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 289 | + $('#select-all-Territoires').text(linkText); | |
| 290 | + }); | |
| 291 | +}); | |
| 292 | +// JavaScript to handle the "Select All" for Territoires2 | |
| 293 | +jQuery(document).ready(function($) { | |
| 294 | + $('#select-all-Territoires2').click(function(e) { | |
| 295 | + e.preventDefault(); // Prevent the default link behavior | |
| 296 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires2[]"]'); | |
| 297 | + | |
| 298 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 299 | + checkboxGroup.prop('checked', isChecked); | |
| 300 | + | |
| 301 | + if (isChecked) { | |
| 302 | + $(this).text('Déselectionner tout'); | |
| 303 | + } else { | |
| 304 | + $(this).text('Sélectionner tout'); | |
| 305 | + } | |
| 306 | + }); | |
| 307 | + | |
| 308 | + $('[name="Territoires2[]"]').change(function() { | |
| 309 | + var allChecked = $('[name="Territoires2[]"]:checked').length === $('[name="Territoires2[]"]').length; | |
| 310 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 311 | + $('#select-all-Territoires2').text(linkText); | |
| 312 | + }); | |
| 313 | +}); | |
| 314 | + | |
| 315 | +// JavaScript to handle the "Select All" for Territoires3 | |
| 316 | +jQuery(document).ready(function($) { | |
| 317 | + $('#select-all-Territoires3').click(function(e) { | |
| 318 | + e.preventDefault(); // Prevent the default link behavior | |
| 319 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires3[]"]'); | |
| 320 | + | |
| 321 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 322 | + checkboxGroup.prop('checked', isChecked); | |
| 323 | + | |
| 324 | + if (isChecked) { | |
| 325 | + $(this).text('Déselectionner tout'); | |
| 326 | + } else { | |
| 327 | + $(this).text('Sélectionner tout'); | |
| 328 | + } | |
| 329 | + }); | |
| 330 | + | |
| 331 | + $('[name="Territoires3[]"]').change(function() { | |
| 332 | + var allChecked = $('[name="Territoires3[]"]:checked').length === $('[name="Territoires3[]"]').length; | |
| 333 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 334 | + $('#select-all-Territoires3').text(linkText); | |
| 335 | + }); | |
| 336 | +}); | |
| 337 | + | |
| 338 | +// JavaScript to handle the "Select All" for Territoires4 | |
| 339 | +jQuery(document).ready(function($) { | |
| 340 | + $('#select-all-Territoires4').click(function(e) { | |
| 341 | + e.preventDefault(); // Prevent the default link behavior | |
| 342 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires4[]"]'); | |
| 343 | + | |
| 344 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 345 | + checkboxGroup.prop('checked', isChecked); | |
| 346 | + | |
| 347 | + if (isChecked) { | |
| 348 | + $(this).text('Déselectionner tout'); | |
| 349 | + } else { | |
| 350 | + $(this).text('Sélectionner tout'); | |
| 351 | + } | |
| 352 | + }); | |
| 353 | + | |
| 354 | + $('[name="Territoires4[]"]').change(function() { | |
| 355 | + var allChecked = $('[name="Territoires4[]"]:checked').length === $('[name="Territoires4[]"]').length; | |
| 356 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 357 | + $('#select-all-Territoires4').text(linkText); | |
| 358 | + }); | |
| 359 | +}); | |
| 360 | + | |
| 361 | +// JavaScript to set the checkboxes 'StatutDeLEmploi' and 'Categories' to be required. | |
| 362 | +document.addEventListener('wpcf7submit', function(event) { | |
| 363 | + if ('StatutDeLEmploi' in event.detail.inputs) { | |
| 364 | + if (event.detail.inputs['StatutDeLEmploi'].checked === false) { | |
| 365 | + alert('Pour vous abonner, vous devez sélectionner au moins un élément de la section \"statut de l\'emploi\"'); | |
| 366 | + event.preventDefault(); | |
| 367 | + } | |
| 368 | + } | |
| 369 | +}, false); | |
| 370 | +//Renommer Rechercher des offres d’emploi par Filtrer les résultats | |
| 371 | +jQuery(document).ready(function($) { | |
| 372 | + var submitButton = $('.search_submit input[type="submit"]'); | |
| 373 | + submitButton.attr('value', 'Filtrer les résultats'); | |
| 374 | +}); | |
| 375 | + | |
| 376 | +// Get all text nodes in the document | |
| 377 | +function getAllTextNodes(element) { | |
| 378 | + const textNodes = []; | |
| 379 | + if (element.nodeType === Node.TEXT_NODE) { | |
| 380 | + textNodes.push(element); | |
| 381 | + } else { | |
| 382 | + const children = element.childNodes; | |
| 383 | + for (let i = 0; i < children.length; i++) { | |
| 384 | + textNodes.push(...getAllTextNodes(children[i])); | |
| 385 | + } | |
| 386 | + } | |
| 387 | + return textNodes; | |
| 388 | +} | |
| 389 | + | |
| 390 | +//remove overlay from hero slider | |
| 391 | +document.addEventListener('DOMContentLoaded', function () { | |
| 392 | + var elements = document.querySelectorAll('.imagebg[data-overlay="4"]'); | |
| 393 | + elements.forEach(function (element) { | |
| 394 | + element.removeAttribute('data-overlay'); | |
| 395 | + }); | |
| 396 | +}); | |
| 397 | + | |
| 398 | +window.addEventListener('DOMContentLoaded', function () { | |
| 399 | +document.querySelector('.scroll-right').onclick = () => { | |
| 400 | + document.querySelector('.job-listing-wrapper').scrollBy({ | |
| 401 | + left: 300, | |
| 402 | + behavior: 'smooth' | |
| 403 | + }); | |
| 404 | +}; | |
| 405 | + | |
| 406 | +document.querySelector('.scroll-left').onclick = () => { | |
| 407 | + document.querySelector('.job-listing-wrapper').scrollBy({ | |
| 408 | + left: -300, | |
| 409 | + behavior: 'smooth' | |
| 410 | + }); | |
| 411 | +}; | |
| 412 | + | |
| 413 | +}); | |
| 414 | + | |
| 415 | +document.addEventListener('DOMContentLoaded', function() { | |
| 416 | + document.querySelectorAll('strong').forEach(function(el) { | |
| 417 | + if (el.textContent.trim() === 'Partagez :') { | |
| 418 | + el.classList.add('is-partagez'); | |
| 419 | + } | |
| 420 | + }); | |
| 421 | +}); | |
| 422 | +</script><link rel="icon" href="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-32x32.png" sizes="32x32" /> | |
| 423 | +<link rel="icon" href="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-192x192.png" sizes="192x192" /> | |
| 424 | +<link rel="apple-touch-icon" href="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-180x180.png" /> | |
| 425 | +<meta name="msapplication-TileImage" content="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-270x270.png" /> | |
| 426 | +<style id="wp-custom-css"> | |
| 427 | +body { | |
| 428 | + font-size: 1.15em; | |
| 429 | + font-weight: 400; | |
| 430 | + color: #000000; | |
| 431 | +} | |
| 432 | + | |
| 433 | +p, .p { | |
| 434 | + font-size: 1.1em; | |
| 435 | + line-height: 1.4em; | |
| 436 | + font-weight: 500; | |
| 437 | + margin-bottom: 1em; | |
| 438 | +} | |
| 439 | + | |
| 440 | +b, .b, strong, .strong { | |
| 441 | + font-weight: 700; | |
| 442 | +} | |
| 443 | + | |
| 444 | +a, a:hover { | |
| 445 | + color: #004071; | |
| 446 | + text-decoration-line: none; | |
| 447 | +} | |
| 448 | + | |
| 449 | +p a, span a, label a { | |
| 450 | + text-decoration-line: none; | |
| 451 | +} | |
| 452 | + | |
| 453 | +.wpb_wrapper a { | |
| 454 | + color: #87CEEB; | |
| 455 | + text-decoration-line: none; | |
| 456 | +} | |
| 457 | + | |
| 458 | +ul > li { | |
| 459 | + font-size: 1.1em; | |
| 460 | + line-height: 1.2em; | |
| 461 | + list-style: disc; | |
| 462 | + list-style-position: outside; | |
| 463 | + margin-left: 20px; | |
| 464 | + padding-left: 0px; | |
| 465 | + padding-bottom: 10px; | |
| 466 | +} | |
| 467 | + | |
| 468 | +.wpb_text_column ul li { | |
| 469 | + list-style-type: disc; | |
| 470 | + list-style-position: outside; | |
| 471 | + margin-left: 5px; | |
| 472 | +} | |
| 473 | + | |
| 474 | +.post-content ul:not(.tabs-content):not(.slides), .wpb_text_column ul, ul.accordion ul, ul.tabs-content ul { | |
| 475 | + list-style-type: disc; | |
| 476 | + list-style-position: outside; | |
| 477 | + margin-left: 25px; | |
| 478 | +} | |
| 479 | + | |
| 480 | +h1, .h1 { | |
| 481 | + font-size: 2.6em; | |
| 482 | + line-height: 1.6em; | |
| 483 | + color: #16375E; | |
| 484 | + font-weight: bold !important; | |
| 485 | +} | |
| 486 | + | |
| 487 | +h2, .h2 { | |
| 488 | + font-size: 40px; | |
| 489 | + line-height: 1.4em; | |
| 490 | + font-weight:bold; | |
| 491 | +} | |
| 492 | + | |
| 493 | +h3, .h3 { | |
| 494 | + font-size: 1.3em; | |
| 495 | + line-height: 1.4em; | |
| 496 | + font-weight: 400; | |
| 497 | + margin-bottom: 0.5em; | |
| 498 | +} | |
| 499 | + | |
| 500 | +h4, .h4 { | |
| 501 | + font-size: 1.2em; | |
| 502 | + line-height: 1em; | |
| 503 | + font-weight: 500; | |
| 504 | +} | |
| 505 | + | |
| 506 | +h5, .h5 { | |
| 507 | + font-size: 1em; | |
| 508 | + line-height: 1.3em; | |
| 509 | + font-weight: 400; | |
| 510 | +} | |
| 511 | + | |
| 512 | +.alignlefticon { | |
| 513 | + float: left; | |
| 514 | + margin: 0 10px 0 0!important; | |
| 515 | +} | |
| 516 | + | |
| 517 | +.vertitop .pos-vertical-center { | |
| 518 | + top: 195px; | |
| 519 | +} | |
| 520 | + | |
| 521 | +.vertitop-faq .pos-vertical-center { | |
| 522 | + top: 140px; | |
| 523 | +} | |
| 524 | + | |
| 525 | +/* HEADER MENU */ | |
| 526 | +/* Header horizontal menu underline */ | |
| 527 | +.menu-horizontal>li>a:hover { | |
| 528 | + border-bottom:none; | |
| 529 | +} | |
| 530 | + | |
| 531 | +.menu-horizontal li:not(:last-child) { | |
| 532 | + margin-right: 1em; | |
| 533 | +} | |
| 534 | + | |
| 535 | +@media (min-width: 990px){ | |
| 536 | + .menu-horizontal li:not(:last-child) { | |
| 537 | + margin-right: 50px; | |
| 538 | + } | |
| 539 | +} | |
| 540 | + | |
| 541 | +.header--top-bar .type--fade, .header--top-bar a { | |
| 542 | + opacity: 1; | |
| 543 | + color: red; | |
| 544 | +} | |
| 545 | + | |
| 546 | +.btn--demo .btn__text{ | |
| 547 | + border-color: #34acaa !important; | |
| 548 | + color:#fff !important; | |
| 549 | +} | |
| 550 | + | |
| 551 | +/* Header drop down menu style */ | |
| 552 | +.dropdowns--hover .dropdown:hover>.dropdown__container>.container>.row>.dropdown__content { | |
| 553 | + position:absolute; | |
| 554 | + left:400px; | |
| 555 | + border-top:3px solid #17355f; | |
| 556 | + width: auto !important; | |
| 557 | +} | |
| 558 | + | |
| 559 | +.dropdowns--hover .dropdown:hover>.dropdown__container>.container>.row>.dropdown__content a:hover{ | |
| 560 | + color: #17355f !important; | |
| 561 | +} | |
| 562 | + | |
| 563 | +.menu-vertical li { | |
| 564 | + font-size: 0.9em; | |
| 565 | + font-weight: 400; | |
| 566 | + color: #666; | |
| 567 | + list-style: none; | |
| 568 | +} | |
| 569 | + | |
| 570 | +/* WPFront bar close button */ | |
| 571 | +.wpfront-close { | |
| 572 | + border: 1px solid #000000 !important; | |
| 573 | + background-color: #ffd600 !important; | |
| 574 | + color: #000000 !important; | |
| 575 | +} | |
| 576 | + | |
| 577 | +#wpfront-notification-bar div.wpfront-close { | |
| 578 | + position: absolute; | |
| 579 | + top: 11px; | |
| 580 | + right: 10px; | |
| 581 | + font-size: 11px; | |
| 582 | + padding: 8px 4px; | |
| 583 | + -webkit-border-radius: 2px; | |
| 584 | + -moz-border-radius: 2px; | |
| 585 | + border-radius: 2px; | |
| 586 | +} | |
| 587 | + | |
| 588 | +/* HEADER HERO CENTER ELEMENTS */ | |
| 589 | +.row-fixed-width { | |
| 590 | + max-width:1170px; | |
| 591 | + margin: 0 auto; | |
| 592 | +} | |
| 593 | + | |
| 594 | +.header-titre { | |
| 595 | + color: #FFF; | |
| 596 | +} | |
| 597 | + | |
| 598 | +/* CONTENT BOX STYLING */ | |
| 599 | +.lien-boite { | |
| 600 | + background-color:#87CEEB; | |
| 601 | + margin-top: 2em; | |
| 602 | + color: #000000; | |
| 603 | + padding:10px; | |
| 604 | + | |
| 605 | +} | |
| 606 | + | |
| 607 | +.solbox { | |
| 608 | + font-size: 0.9em; | |
| 609 | + line-height: 1em; | |
| 610 | + font-weight: 400; | |
| 611 | + margin-bottom: 1em; | |
| 612 | + text-align: left; | |
| 613 | +} | |
| 614 | + | |
| 615 | +/* Logo caroussel */ | |
| 616 | +.vc_row .vc_column-gap-30 { | |
| 617 | + margin-left: -10px; | |
| 618 | + margin-right: -10px; | |
| 619 | +} | |
| 620 | + | |
| 621 | +/* Ligne titre */ | |
| 622 | +.floatClear { | |
| 623 | + clear: both; | |
| 624 | +} | |
| 625 | +#wrapper { | |
| 626 | + text-align: center; | |
| 627 | + position: relative; | |
| 628 | +} | |
| 629 | +#wrapper .line { | |
| 630 | + border-bottom: 2px solid #87CEEB; | |
| 631 | + position: absolute; | |
| 632 | + width: 100%; | |
| 633 | + top: 15px; | |
| 634 | +} | |
| 635 | +#wrapper .textbox { | |
| 636 | + position: absolute; | |
| 637 | + width: 100%; | |
| 638 | +} | |
| 639 | +#wrapper .textbox .text { | |
| 640 | + background-color: white; | |
| 641 | + margin: 0px auto; | |
| 642 | + padding: 0px 30px; | |
| 643 | + text-align: center; | |
| 644 | + display: inline; | |
| 645 | + font-size: 24px; | |
| 646 | +} | |
| 647 | + | |
| 648 | +/* Remove white bar in header on IE11 */ | |
| 649 | +.nav-container { | |
| 650 | + min-height: 0px !important; | |
| 651 | +} | |
| 652 | + | |
| 653 | +/* box shadow */ | |
| 654 | +.box-shadow { | |
| 655 | + box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.07); | |
| 656 | +} | |
| 657 | +.no-box-shadow { | |
| 658 | + box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.07); | |
| 659 | +} | |
| 660 | + | |
| 661 | +/*.wpb_wrapper .col-sm-4 .vc_column-inner { | |
| 662 | +box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.07); | |
| 663 | +} */ | |
| 664 | + | |
| 665 | +.featured-news { | |
| 666 | + padding-top: 0px; | |
| 667 | + padding-bottom: 0px; | |
| 668 | + padding-right: 0px; | |
| 669 | +} | |
| 670 | + | |
| 671 | +.feature .boxed { | |
| 672 | + padding: 20px 10px 10px 10px; | |
| 673 | +} | |
| 674 | + | |
| 675 | +/* Top image in boxes */ | |
| 676 | +.top-radius .elementor-image-box-img .vc_single_image-img img { | |
| 677 | + border-radius: 20px 20px 0 0; | |
| 678 | +} | |
| 679 | + | |
| 680 | +.wpb_single_image .vc_single_image-wrapper.vc_box_rounded, .wpb_single_image .vc_single_image-wrapper.vc_box_rounded img { | |
| 681 | + border-radius: 10px 10px 0 0; | |
| 682 | +} | |
| 683 | + | |
| 684 | +.border--round { | |
| 685 | + border-radius: 10px; | |
| 686 | +} | |
| 687 | + | |
| 688 | +/* .all-radius .wpb_single_image .vc_single_image-wrapper.vc_box_rounded, .wpb_single_image .vc_single_image-wrapper.vc_box_rounded img { | |
| 689 | +border-radius: 10px 10px 10px 10px; | |
| 690 | +box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.07); | |
| 691 | +} */ | |
| 692 | + | |
| 693 | +/* Custom Page Element */ | |
| 694 | +.vc_custom_1602515817184 { | |
| 695 | + padding-top: 20px; | |
| 696 | + padding-bottom: 20px; | |
| 697 | +} | |
| 698 | + | |
| 699 | +/* HEADER */ | |
| 700 | +/* Header Logo */ | |
| 701 | +.bar .logo { | |
| 702 | + max-height: 90px; | |
| 703 | +} | |
| 704 | +@media (min-width: 1050px) { | |
| 705 | + .bar .logo { | |
| 706 | + margin-top: -49px; | |
| 707 | + } | |
| 708 | +} | |
| 709 | +@media (max-width: 1050px) { | |
| 710 | + .bar .logo { | |
| 711 | + margin-top: -10px; | |
| 712 | + } | |
| 713 | +} | |
| 714 | +.menu-item-home { | |
| 715 | + margin-top: 9px; | |
| 716 | + margin-right: 5px; | |
| 717 | +} | |
| 718 | + | |
| 719 | +/* Header horizontal menu style */ | |
| 720 | +.bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > a, .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > span { | |
| 721 | + color:#87CEEB; | |
| 722 | +} | |
| 723 | + | |
| 724 | +.bar-1 .menu-horizontal>li>.dropdown__trigger, .bar-1 .menu-horizontal>li>a { | |
| 725 | + font-size: 18px; | |
| 726 | + line-height: 2.166666666666667em; | |
| 727 | + text-transform: none; | |
| 728 | + font-weight: 600; | |
| 729 | + letter-spacing: .5px; | |
| 730 | + color: #0067a5; | |
| 731 | +} | |
| 732 | + | |
| 733 | +.dropdown > .dropdown__trigger:after{ | |
| 734 | + font-size: 20px; | |
| 735 | + bottom: -3px; | |
| 736 | +} | |
| 737 | + | |
| 738 | +.bar-1 .menu-horizontal>li>.dropdown__trigger:hover, .bar-1 .menu-horizontal>li>a:hover { | |
| 739 | + color: #004071; | |
| 740 | +} | |
| 741 | + | |
| 742 | +.menu-horizontal>li:not(:hover)>a, .menu-horizontal>li:not(:hover)>span, .menu-horizontal>li:not(:hover)>.modal-instance>.modal-trigger { | |
| 743 | + opacity: 1; | |
| 744 | +} | |
| 745 | + | |
| 746 | + | |
| 747 | +/* Mobile Menu */ | |
| 748 | + | |
| 749 | +@media (max-width: 768px){ | |
| 750 | + .menu-horizontal>li>a:hover { | |
| 751 | + color: #34ACAA !important; | |
| 752 | + } | |
| 753 | + .menu-horizontal li { | |
| 754 | + font-size: 0.9em; | |
| 755 | + font-weight: 400; | |
| 756 | + color: #666; | |
| 757 | + list-style: none; | |
| 758 | + } | |
| 759 | + .menu-vertical li { | |
| 760 | + font-size: 1.2em; | |
| 761 | + font-weight: 400; | |
| 762 | + color: #666; | |
| 763 | + list-style: none; | |
| 764 | + } | |
| 765 | + .btn--demo { | |
| 766 | + width: 25%; | |
| 767 | + } | |
| 768 | + /* Index F-H page logo positioning */ | |
| 769 | + .vertitop .pos-vertical-center { | |
| 770 | + top: -100px; | |
| 771 | + } | |
| 772 | + /* .wp-image-6925 { | |
| 773 | + margin-bottom: 60px; | |
| 774 | + } */ | |
| 775 | + .vertitop .pos-vertical-center h1 { | |
| 776 | + padding-top: 30px; | |
| 777 | + padding-bottom: 0px; | |
| 778 | + margin-bottom: -30px; | |
| 779 | + } | |
| 780 | + .mob400 p { | |
| 781 | + font-weight: 400; | |
| 782 | + } | |
| 783 | +} | |
| 784 | + | |
| 785 | +/* Header CTA button */ | |
| 786 | +.btn--sm { | |
| 787 | + padding-top: .2em; | |
| 788 | + padding-bottom: .2em; | |
| 789 | + padding-right: 1em; | |
| 790 | + padding-left: 1em; | |
| 791 | +} | |
| 792 | + | |
| 793 | +.btn, .btn a { | |
| 794 | + border-radius: 6px; | |
| 795 | + border: none; | |
| 796 | + border-width: 1px; | |
| 797 | + font-size: inherit; | |
| 798 | + line-height: 1.85714286em; | |
| 799 | +} | |
| 800 | + | |
| 801 | +.btn .btn__text { | |
| 802 | + color: #FFF; | |
| 803 | + font-weight: 600; | |
| 804 | + font-size: 20px; | |
| 805 | + font-family:'Gotham',sans-serif; | |
| 806 | +} | |
| 807 | + | |
| 808 | +.btn--demo, .btn__text a { | |
| 809 | + color: #4a90e2; | |
| 810 | + font-weight: 400; | |
| 811 | +} | |
| 812 | + | |
| 813 | +.btn--demo, .btn--demo:visited { | |
| 814 | + background: #87CEEB; | |
| 815 | + border-color: #fff; | |
| 816 | +} | |
| 817 | + | |
| 818 | +/* Boutons CTA */ | |
| 819 | +.btn--primary, .btn--primary:visited { | |
| 820 | + color: #000000 !important; | |
| 821 | + background: transparent; | |
| 822 | + border-color: #87CEEB; | |
| 823 | +} | |
| 824 | + | |
| 825 | +.btn--primary:active { | |
| 826 | + background: #87CEEB; | |
| 827 | +} | |
| 828 | + | |
| 829 | +/* FOOTER SECTION */ | |
| 830 | +.footer-6 { | |
| 831 | + background: #004071; | |
| 832 | + padding-top: 50px; | |
| 833 | + padding-bottom: 20px; | |
| 834 | +} | |
| 835 | + | |
| 836 | +section, footer { | |
| 837 | + padding-top: 3.42857143em; | |
| 838 | + padding-bottom: 3.42857143em; | |
| 839 | +} | |
| 840 | + | |
| 841 | +/* Footer 1st column */ | |
| 842 | +.textwidget { | |
| 843 | + padding-top: 2em; | |
| 844 | + font-size: 13px; | |
| 845 | + margin-bottom: 10px; | |
| 846 | + text-align: justify; | |
| 847 | +} | |
| 848 | + | |
| 849 | +/* Footer 2nd column */ | |
| 850 | +#nav_menu-2, #nav_menu-3 { | |
| 851 | + padding-left: 60px; | |
| 852 | + margin-bottom: 60px; | |
| 853 | +} | |
| 854 | + | |
| 855 | +footer a { | |
| 856 | + font-weight: 400; | |
| 857 | +} | |
| 858 | + | |
| 859 | +footer ul:not(.list-inline):not(.slides)>li { | |
| 860 | + font-size: 14px; | |
| 861 | + line-height: 1.8em!important; | |
| 862 | +} | |
| 863 | + | |
| 864 | +footer ul li { | |
| 865 | + padding: 0px; | |
| 866 | + list-style: none; | |
| 867 | + margin-left: 5px; | |
| 868 | +} | |
| 869 | + | |
| 870 | +/* Footer 3rd column */ | |
| 871 | +#text-4 { | |
| 872 | + padding-left: 80px; | |
| 873 | +} | |
| 874 | + | |
| 875 | +h6.type--uppercase, .h6.type--uppercase { | |
| 876 | + margin-block-end: -10px; | |
| 877 | +} | |
| 878 | + | |
| 879 | +.alignlefticon { | |
| 880 | + float: none; | |
| 881 | +} | |
| 882 | + | |
| 883 | +/* Footer columns on mobile */ | |
| 884 | +@media (max-width: 768px){ | |
| 885 | + .widget_media_image img { | |
| 886 | + display: block; | |
| 887 | + margin-left: auto; | |
| 888 | + margin-right: auto; | |
| 889 | + } | |
| 890 | + #nav_menu-2, #nav_menu-3 { | |
| 891 | + display: none; | |
| 892 | + padding-left: 150px; | |
| 893 | + margin-top: 30px; | |
| 894 | + } | |
| 895 | + #text-4 h6 { | |
| 896 | + padding-left: 0px; | |
| 897 | + margin-top: 30px; | |
| 898 | + text-align: left; | |
| 899 | + } | |
| 900 | + #text-4 { | |
| 901 | + padding: 0px; | |
| 902 | + } | |
| 903 | + #text-3 .textwidget, #text-4 .textwidget { | |
| 904 | + padding-left: 0px; | |
| 905 | + text-align: left; | |
| 906 | + } | |
| 907 | +} | |
| 908 | + | |
| 909 | +/* Footer sub footer */ | |
| 910 | +.footer-stack-copyright, .menu-item-4840 ul>li { | |
| 911 | + font-size: 14px; | |
| 912 | + text-align: center; | |
| 913 | +} | |
| 914 | + | |
| 915 | +.menu-footer-menu-container>ul>li { | |
| 916 | + font-size: 14px; | |
| 917 | + display: inline; | |
| 918 | + padding: 0px 10px 0px 10px | |
| 919 | +} | |
| 920 | + | |
| 921 | +/* How to not impact header menu? */ | |
| 922 | +.menu-footer-menu, .menu-item-type-post_type:not(:last-child) { | |
| 923 | + border-right: 0px solid #bbb; | |
| 924 | +} | |
| 925 | + | |
| 926 | +.menu-footer-menu, .menu-item-type-post_type:last-child { | |
| 927 | + border-right: 0px; | |
| 928 | +} | |
| 929 | + | |
| 930 | +.vc_btn3.vc_btn3-size-lg { | |
| 931 | + font-size: 18px; | |
| 932 | + font-weight: 400; | |
| 933 | + padding-top: 16px; | |
| 934 | + padding-bottom: 20px; | |
| 935 | + padding-left: 40px; | |
| 936 | + padding-right: 40px; | |
| 937 | +} | |
| 938 | + | |
| 939 | +.vc_btn3.vc_btn3-color-orange, .vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat { | |
| 940 | + color: #000000; | |
| 941 | + background-color: #87CEEB; | |
| 942 | +} | |
| 943 | + | |
| 944 | + | |
| 945 | +/* TEMPLATE LAYOUT */ | |
| 946 | +/* 5 column layout */ | |
| 947 | +@media (min-width: 768px){ | |
| 948 | + .column5 { | |
| 949 | + width: 16%; | |
| 950 | + margin: 0 2%; | |
| 951 | + float:left; | |
| 952 | + } | |
| 953 | + .column6 { | |
| 954 | + width: 12%; | |
| 955 | + margin: 0 2%; | |
| 956 | + float:left; | |
| 957 | + } | |
| 958 | +} | |
| 959 | + | |
| 960 | +/* BLOG */ | |
| 961 | +/* Note: Grid template: loop/content-post-cards.php */ | |
| 962 | +/* Blog post font style */ | |
| 963 | +article .article__body p, article .article__body ul { | |
| 964 | + font-size: 1.1em; | |
| 965 | + line-height: 1.6em; | |
| 966 | + font-weight: 400; | |
| 967 | + color: black; | |
| 968 | +} | |
| 969 | + | |
| 970 | +.wpb_wrapper a { | |
| 971 | + color: #13223f; | |
| 972 | + text-decoration-line: none; | |
| 973 | +} | |
| 974 | + | |
| 975 | +.vc_custom_heading a, .vc_custom_heading a:focus, .vc_custom_heading a:hover, .vc_custom_heading a:visited { | |
| 976 | + font-size: 1em; | |
| 977 | + line-height: 1.3em; | |
| 978 | + font-weight: 400; | |
| 979 | + color: #13223f; | |
| 980 | + text-decoration-line: none; | |
| 981 | +} | |
| 982 | + | |
| 983 | +/* Style Most Recent Articles List */ | |
| 984 | +.sidebar li { | |
| 985 | + font-size: 1em; | |
| 986 | + line-height: 1.2em; | |
| 987 | + font-weight: 400; | |
| 988 | + padding-bottom: 10px; | |
| 989 | +} | |
| 990 | + | |
| 991 | +/* Remove pagination after 3 latest blog post on homepage */ | |
| 992 | +.nopagination .pagination { | |
| 993 | + display: none; | |
| 994 | +} | |
| 995 | + | |
| 996 | +/* Vertical Spacing in Grid view */ | |
| 997 | +.masonry__item:not(:empty) { | |
| 998 | + margin-bottom: 0px; | |
| 999 | + transform-style: preserve-3d; | |
| 1000 | +} | |
| 1001 | + | |
| 1002 | +/* Category label in Grid mode */ | |
| 1003 | +.label { | |
| 1004 | + display: inline-block; | |
| 1005 | + font-size: 9px; | |
| 1006 | + font-weight: 700; | |
| 1007 | + letter-spacing: .5px; | |
| 1008 | + color: #000; | |
| 1009 | + text-transform: uppercase; | |
| 1010 | + height: 26px; | |
| 1011 | + min-width: 65px; | |
| 1012 | + padding: 0 10px; | |
| 1013 | + text-align: center; | |
| 1014 | + border-radius: 0px 20px 20px 0px; | |
| 1015 | + position: relative; | |
| 1016 | + z-index: 3; | |
| 1017 | + top: 8.5em; | |
| 1018 | + left: 0em; | |
| 1019 | +} | |
| 1020 | +.label:not([class*='bg--']) { | |
| 1021 | + background: #87CEEB; | |
| 1022 | +} | |
| 1023 | + | |
| 1024 | +.wpcf7-form p label { | |
| 1025 | + color: #004071 !important; | |
| 1026 | + font-size:18px !important; | |
| 1027 | +} | |
| 1028 | +.label-2 { | |
| 1029 | + display: inline-block; | |
| 1030 | + font-size: 9px; | |
| 1031 | + font-weight: 700; | |
| 1032 | + letter-spacing: .5px; | |
| 1033 | + color: #fff; | |
| 1034 | + text-transform: uppercase; | |
| 1035 | + height: 26px; | |
| 1036 | + min-width: 65px; | |
| 1037 | + padding: 0 20px; | |
| 1038 | + text-align: center; | |
| 1039 | + border-radius: 0px 20px 20px 0px; | |
| 1040 | + position: relative; | |
| 1041 | + z-index: 3; | |
| 1042 | + top: -26em; | |
| 1043 | + left: 0em; | |
| 1044 | +} | |
| 1045 | + | |
| 1046 | +.label-2:not([class*='bg--']) { | |
| 1047 | + background: #87CEEB; | |
| 1048 | +} | |
| 1049 | + | |
| 1050 | +/* Hide breadcrumb in Tag page */ | |
| 1051 | +.breadcrumbs { | |
| 1052 | + display: none; | |
| 1053 | +} | |
| 1054 | +.breadcrumb--section .background-image-holder { | |
| 1055 | + height: 280px; | |
| 1056 | + background-color:#ffffff !important; | |
| 1057 | +} | |
| 1058 | + | |
| 1059 | +.team-title { | |
| 1060 | + padding-top: 30px; | |
| 1061 | + margin-top: 30px; | |
| 1062 | +} | |
| 1063 | + | |
| 1064 | +/* CONTACT FORM */ | |
| 1065 | +.titre-champ { | |
| 1066 | + font-size: 1.1em; | |
| 1067 | + line-height: 1.4em; | |
| 1068 | + font-weight: 400; | |
| 1069 | + margin-bottom: 1em; | |
| 1070 | +} | |
| 1071 | + | |
| 1072 | +input[type], select, textarea { | |
| 1073 | + margin-bottom: 0.5em; | |
| 1074 | + margin-top: 0.5em; | |
| 1075 | + border:1.5px solid #004071; | |
| 1076 | +} | |
| 1077 | +input[type="checkbox"] { | |
| 1078 | + width: 13px !important ; | |
| 1079 | + -webkit-appearance: checkbox !important; | |
| 1080 | +} | |
| 1081 | + | |
| 1082 | +span.wpcf7-list-item { | |
| 1083 | + display: inline-block; | |
| 1084 | + margin: 0 0 0 0; | |
| 1085 | +} | |
| 1086 | + | |
| 1087 | +button[type="submit"]:not([class*='col-']) { | |
| 1088 | + width: 30%; | |
| 1089 | +} | |
| 1090 | + | |
| 1091 | +.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output { | |
| 1092 | + border-color: #D90000; | |
| 1093 | + border-radius: 25px; | |
| 1094 | +} | |
| 1095 | + | |
| 1096 | +.wpcf7 form.sent .wpcf7-response-output { | |
| 1097 | + border-color: #3767D9; | |
| 1098 | + width: 50%; | |
| 1099 | +} | |
| 1100 | + | |
| 1101 | +/* Apply custom style to all CF7 checkboxes */ | |
| 1102 | +.wpcf7 input[type="checkbox"] { | |
| 1103 | + opacity: 0; | |
| 1104 | + position: absolute; | |
| 1105 | + width: 25px; | |
| 1106 | + height: 25px; | |
| 1107 | + margin: 0; | |
| 1108 | + z-index: 2; | |
| 1109 | + cursor: pointer; | |
| 1110 | +} | |
| 1111 | + | |
| 1112 | +.wpcf7 .wpcf7-list-item { | |
| 1113 | + position: relative; | |
| 1114 | + padding-left: 28px; | |
| 1115 | + display: inline-block; | |
| 1116 | + cursor: pointer; | |
| 1117 | +} | |
| 1118 | + | |
| 1119 | +.wpcf7 input[type="checkbox"] + span::before { | |
| 1120 | + content: ""; | |
| 1121 | + position: absolute; | |
| 1122 | + left: 0; | |
| 1123 | + top: 0; | |
| 1124 | + width: 25px; | |
| 1125 | + height: 25px; | |
| 1126 | + border: 1px solid #004071; | |
| 1127 | + background-color: white; | |
| 1128 | + box-sizing: border-box; | |
| 1129 | + border-radius: 0px; | |
| 1130 | + transition: all 0.2s ease; | |
| 1131 | + margin-top:5px; | |
| 1132 | +} | |
| 1133 | + | |
| 1134 | +.wpcf7 input[type="checkbox"]:checked + span::before { | |
| 1135 | + background-image: linear-gradient(#004071, #004071); | |
| 1136 | + background-clip: content-box; | |
| 1137 | + padding: 2px; /* this creates the white gap between border and inner fill */ | |
| 1138 | +} | |
| 1139 | + | |
| 1140 | + | |
| 1141 | +@media (max-width: 768px){ | |
| 1142 | + input:not([class*='col-']), select:not([class*='col-']), .input-select:not([class*='col-']), textarea:not([class*='col-']) { | |
| 1143 | + width: 100%; | |
| 1144 | + margin-top:0; | |
| 1145 | + } | |
| 1146 | + .menu-item>a{ | |
| 1147 | + color:#000000 !important; | |
| 1148 | + } | |
| 1149 | + button[type="submit"]:not([class*='col-']) { | |
| 1150 | + width: 50%; | |
| 1151 | + } | |
| 1152 | + .wpcf7 form.sent .wpcf7-response-output { | |
| 1153 | + width: 100%; | |
| 1154 | + } | |
| 1155 | +} | |
| 1156 | + | |
| 1157 | +/* Hide Captcha all pages */ | |
| 1158 | +body:not(.page-id-XX) .grecaptcha-badge { | |
| 1159 | + display: none; | |
| 1160 | +} | |
| 1161 | + | |
| 1162 | +/*css pour les offres*/ | |
| 1163 | +li.location a.google_map_link { | |
| 1164 | + color: #87CEEB; | |
| 1165 | + text-decoration: none; | |
| 1166 | + transition: color 0.3s ease; | |
| 1167 | +} | |
| 1168 | +li.location a.google_map_link:hover { | |
| 1169 | + color: #0022CC; | |
| 1170 | +} | |
| 1171 | +h1.h2 { | |
| 1172 | + background-image: url('https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/07/SITE_TALENTS_CHUM_PHOTO_1900_V1-06.jpg'); | |
| 1173 | + background-repeat: no-repeat; | |
| 1174 | + background-position: center center; | |
| 1175 | + background-size: 105vw 60vh; | |
| 1176 | + background-attachment: scroll; | |
| 1177 | + color: white; | |
| 1178 | + padding: 40px 20px; | |
| 1179 | + height:40vh; | |
| 1180 | +} | |
| 1181 | +li.job-type.temps-complet , li.job-type.temps-partiel-regulier, li.job-type.temps-partiel-occasionnel{ | |
| 1182 | + background-color: #87CEEB !important; | |
| 1183 | + color: white !important; | |
| 1184 | + text-align: center !important; | |
| 1185 | + justify-content: center !important; | |
| 1186 | + text-align: center !important; | |
| 1187 | + padding-top:10px !important; | |
| 1188 | + padding-right:10px !important; | |
| 1189 | + border-radius: 10px; | |
| 1190 | + color: black !important; | |
| 1191 | +} | |
| 1192 | +ul.job-listing-meta li { | |
| 1193 | + display: block; | |
| 1194 | +} | |
| 1195 | +ul.job-listing-meta { | |
| 1196 | + display: none; | |
| 1197 | +} | |
| 1198 | +input.application_button.button { | |
| 1199 | + background-color: #fff; | |
| 1200 | + color: #004071; | |
| 1201 | + border: none; | |
| 1202 | + width:auto; | |
| 1203 | + cursor: pointer; | |
| 1204 | + transition: background-color 0.3s ease; | |
| 1205 | +} | |
| 1206 | +input.application_button.button:hover { | |
| 1207 | + background-color: #004071 ; | |
| 1208 | + color:#fff; | |
| 1209 | +} | |
| 1210 | +div.addtoany_share_save_container { | |
| 1211 | + display: none; | |
| 1212 | +} | |
| 1213 | +.job_description h1, | |
| 1214 | +.job_description h2, | |
| 1215 | +.job_description h3, | |
| 1216 | +.job_description h4, | |
| 1217 | +.job_description h5, | |
| 1218 | +.job_description h6 { | |
| 1219 | + margin-bottom: 10px; | |
| 1220 | + margin-top: 20px; | |
| 1221 | + color:#000; | |
| 1222 | + font-weight: bold; | |
| 1223 | + font-size:25px; | |
| 1224 | +} | |
| 1225 | +.job_description { | |
| 1226 | + font-size:19px; | |
| 1227 | +} | |
| 1228 | + | |
| 1229 | +.single_job_listing hr{ | |
| 1230 | + border-color: #16375E50 !important; | |
| 1231 | +} | |
| 1232 | +.single_job_listing .default-text{ | |
| 1233 | + padding-bottom:20px; | |
| 1234 | + border-bottom: 1px solid #16375E50; | |
| 1235 | +} | |
| 1236 | +.single_job_listing .job_description h2{ | |
| 1237 | + padding-top:50px; | |
| 1238 | +} | |
| 1239 | +li.wpjmef-field-salary { | |
| 1240 | + display: none !important; | |
| 1241 | +} | |
| 1242 | +img.company_logo { | |
| 1243 | + display: none; | |
| 1244 | +} | |
| 1245 | +/* | |
| 1246 | +ul.meta { | |
| 1247 | + width: 100% !important; | |
| 1248 | + margin-top: 10px !important; | |
| 1249 | + display: flex; | |
| 1250 | + align-items: center; | |
| 1251 | +} | |
| 1252 | +ul.meta li { | |
| 1253 | + display: inline !important; | |
| 1254 | +}*/ | |
| 1255 | + | |
| 1256 | +/*hide copyright in footer*/ | |
| 1257 | +div.footer__lower.text-center-xs { | |
| 1258 | + display: none; | |
| 1259 | +} | |
| 1260 | +.alignleft { | |
| 1261 | + margin-right: 10px !important; | |
| 1262 | +} | |
| 1263 | +/*hide le + dans les offres*/ | |
| 1264 | +.a2a_dd.addtoany_share_save.addtoany_share { | |
| 1265 | + display: none; | |
| 1266 | +} | |
| 1267 | +/*hide the alerte button in Liste des offres d’emplois*/ | |
| 1268 | +a.alert { | |
| 1269 | + display: none; | |
| 1270 | +} | |
| 1271 | +/* Hide borders and set background to white for ul and its li children in job types*/ | |
| 1272 | +ul.job_types { | |
| 1273 | + list-style: none !important; | |
| 1274 | + padding: 0 !important; | |
| 1275 | + border: none !important; | |
| 1276 | + background-color: transparent !important; | |
| 1277 | +} | |
| 1278 | +ul.job_types li { | |
| 1279 | + border: none !important; | |
| 1280 | + font-size: 125%; | |
| 1281 | +} | |
| 1282 | +.showing_jobs { | |
| 1283 | + background-color:#7cafde82 !important; | |
| 1284 | +} | |
| 1285 | + | |
| 1286 | +.job-type { | |
| 1287 | + margin-right: 20px; | |
| 1288 | +} | |
| 1289 | + | |
| 1290 | +div.job-location { | |
| 1291 | + font-weight: bold; | |
| 1292 | + margin-top: -6.5%; | |
| 1293 | +} | |
| 1294 | + | |
| 1295 | +.before-job button.application_button.button { | |
| 1296 | + color: white; | |
| 1297 | + border: 2px solid #ffffff; | |
| 1298 | + cursor: pointer; | |
| 1299 | + transition: background-color 0.3s ease; | |
| 1300 | + border-radius: 30px; | |
| 1301 | + font-weight:700; | |
| 1302 | +} | |
| 1303 | + | |
| 1304 | +.before-job button.application_button.button:hover { | |
| 1305 | + color: #483388; | |
| 1306 | + background: #ffffff; | |
| 1307 | +} | |
| 1308 | +.before-job .job_application.application{ | |
| 1309 | + margin-top: -110px; | |
| 1310 | + z-index: 10; | |
| 1311 | + position: relative; | |
| 1312 | +} | |
| 1313 | + | |
| 1314 | +.job-manager-single-alert-link a { | |
| 1315 | + color: #6BA4BB; | |
| 1316 | +} | |
| 1317 | +.job-manager-single-alert-link a:hover { | |
| 1318 | + color: #B3E0F7; | |
| 1319 | +} | |
| 1320 | +.back-link { | |
| 1321 | + display: block; | |
| 1322 | + width: 100%; | |
| 1323 | + margin-bottom: -77.5px; | |
| 1324 | + margin-left: -10px; | |
| 1325 | +} | |
| 1326 | +.job-type-location .job-type, | |
| 1327 | +.job-type-location .job-location, | |
| 1328 | +.job-type-location .job-time-left{ | |
| 1329 | + margin-right: 20px; | |
| 1330 | + color: #004071; | |
| 1331 | + font-size: 19px; | |
| 1332 | + font-weight: normal; | |
| 1333 | +} | |
| 1334 | + | |
| 1335 | +.application_details { | |
| 1336 | + background-color: white; | |
| 1337 | +} | |
| 1338 | + | |
| 1339 | +.back-link a { | |
| 1340 | + color: #767676; | |
| 1341 | +} | |
| 1342 | +.back-link a:hover { | |
| 1343 | + color: gray; | |
| 1344 | +} | |
| 1345 | + | |
| 1346 | +.job-type-location span { | |
| 1347 | + font-family: 'Gotham',sans-serif; | |
| 1348 | +} | |
| 1349 | + | |
| 1350 | +.search_submit { | |
| 1351 | + text-align: right; | |
| 1352 | +} | |
| 1353 | + | |
| 1354 | +@media screen and (max-width: 768px) { | |
| 1355 | + .job_application { | |
| 1356 | + flex: 100%; | |
| 1357 | + justify-content: flex-start; | |
| 1358 | + } | |
| 1359 | +} | |
| 1360 | + | |
| 1361 | +.input-select { | |
| 1362 | + display: block; | |
| 1363 | +} | |
| 1364 | + | |
| 1365 | +div.search_categories { | |
| 1366 | + padding-top:10px !important; | |
| 1367 | +} | |
| 1368 | +.search_jobs { | |
| 1369 | + display: flex ; | |
| 1370 | + flex-wrap: wrap ; | |
| 1371 | +} | |
| 1372 | +.search_submit { | |
| 1373 | + flex: 30%; | |
| 1374 | +} | |
| 1375 | + | |
| 1376 | +.search_location { | |
| 1377 | + width: 100% !important; | |
| 1378 | + padding-top: 10px; | |
| 1379 | + padding-left:0 !important; | |
| 1380 | + flex: 1; | |
| 1381 | + min-width: 0; | |
| 1382 | +} | |
| 1383 | + | |
| 1384 | +.search_location .input-select { | |
| 1385 | + display: block; | |
| 1386 | +} | |
| 1387 | + | |
| 1388 | +.search_keywords { | |
| 1389 | + width: 100% !important; | |
| 1390 | + padding-top: 10px; | |
| 1391 | + padding-left:0 !important; | |
| 1392 | + padding-right:0 !important; | |
| 1393 | + flex: 2; | |
| 1394 | + min-width: 0; | |
| 1395 | +} | |
| 1396 | + | |
| 1397 | +.location-n-cat .location-n-cat:has(.search_keywords) { | |
| 1398 | + width: 100%; | |
| 1399 | + display: flex; | |
| 1400 | + gap: 10px; | |
| 1401 | + flex-wrap: wrap; | |
| 1402 | +} | |
| 1403 | + | |
| 1404 | +.search_submit { | |
| 1405 | + margin-top: 10px; | |
| 1406 | +} | |
| 1407 | + | |
| 1408 | +/* Adjustments for select dropdowns */ | |
| 1409 | +/* Hide the comments */ | |
| 1410 | +.comments { | |
| 1411 | + display: none; | |
| 1412 | +} | |
| 1413 | +/* Hide the comment form */ | |
| 1414 | +.comments-form { | |
| 1415 | + display: none; | |
| 1416 | +} | |
| 1417 | + | |
| 1418 | +input:not([class*='col-']), select:not([class*='col-']), .input-select:not([class*='col-']), textarea:not([class*='col-']) { | |
| 1419 | + width: 100%; | |
| 1420 | + margin-top:0; | |
| 1421 | +} | |
| 1422 | + | |
| 1423 | +#search_location { | |
| 1424 | + background-color: transparent; | |
| 1425 | + border: 2px solid #004071; | |
| 1426 | + border-radius: 10px; | |
| 1427 | + padding-top: 10px; | |
| 1428 | + padding-top: 5px; | |
| 1429 | + font-size: 16px; | |
| 1430 | +} | |
| 1431 | +.input-select:after { | |
| 1432 | + position: absolute; | |
| 1433 | + right: 0; | |
| 1434 | + height: 100%; | |
| 1435 | + top: 0; | |
| 1436 | + font-size: 40px; | |
| 1437 | + font-weight: 700; | |
| 1438 | + color: #13223f !important; | |
| 1439 | + transform: rotate(90deg); | |
| 1440 | + content: '\203A'; | |
| 1441 | + pointer-events: none; | |
| 1442 | + border-left: none; | |
| 1443 | + line-height: 60px; | |
| 1444 | +} | |
| 1445 | +#search_keywords { | |
| 1446 | + background-color: transparent; | |
| 1447 | + border: 2px solid #004071; | |
| 1448 | + border-radius: 10px; | |
| 1449 | + color: #004071 !important; | |
| 1450 | +} | |
| 1451 | +input[type]:focus, select:focus, textarea:focus { | |
| 1452 | + border-color: #2b546b !important; | |
| 1453 | +} | |
| 1454 | +select { | |
| 1455 | + color: #B3B3BD; | |
| 1456 | +} | |
| 1457 | +@media screen and (max-width: 767px) { | |
| 1458 | + input[type="submit"] { | |
| 1459 | + width: 100% !important; | |
| 1460 | + font-size:18px!important; | |
| 1461 | + } | |
| 1462 | + | |
| 1463 | +} | |
| 1464 | +.fas.fa-calendar, .fas.fa-clock, .fas.fa-map-marker-alt { | |
| 1465 | + color: #004071; | |
| 1466 | + margin-right:5px; | |
| 1467 | +} | |
| 1468 | + | |
| 1469 | +.footer-6 { | |
| 1470 | + position: absolute; | |
| 1471 | + left: 0; | |
| 1472 | + right: 0; | |
| 1473 | + width: 100%; | |
| 1474 | + margin-top:10px; | |
| 1475 | +} | |
| 1476 | + | |
| 1477 | +.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn--primary { | |
| 1478 | + background-color: #004071; | |
| 1479 | + color: #fff !important; | |
| 1480 | + width: auto; | |
| 1481 | + padding: 0px 15px ; | |
| 1482 | + font-size:23px; | |
| 1483 | + margin-top: 10px; | |
| 1484 | + font-family:'Gotham',sans-serif; | |
| 1485 | + height:auto; | |
| 1486 | + box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3);} | |
| 1487 | + | |
| 1488 | +.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn--primary:hover{ | |
| 1489 | + background-color: #fff; | |
| 1490 | + color:#004071 !important; | |
| 1491 | + border:1px solid #004071; | |
| 1492 | +} | |
| 1493 | + | |
| 1494 | +.masonry { | |
| 1495 | + transform: scale(0.6); | |
| 1496 | + margin-top: -50%; | |
| 1497 | + margin-bottom: -40%; | |
| 1498 | +} | |
| 1499 | + | |
| 1500 | +.masonry__item h4 { | |
| 1501 | + transform: scale(1.3); | |
| 1502 | +} | |
| 1503 | + | |
| 1504 | +div.article__title + span { | |
| 1505 | + display: none; | |
| 1506 | +} | |
| 1507 | + | |
| 1508 | +.bar__module a.btn--demo { | |
| 1509 | + background-color: #004071; | |
| 1510 | + border-radius: 5px; | |
| 1511 | + padding:5px 25px; | |
| 1512 | + width:auto; | |
| 1513 | +} | |
| 1514 | +.btn--demo .btn__text::before { | |
| 1515 | + content: ""; | |
| 1516 | + display: none; | |
| 1517 | + width: 20px; | |
| 1518 | + height: 20px; | |
| 1519 | + margin-right: 8px; | |
| 1520 | + background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='white' stroke-width='2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 4-6 8-6s8 2 8 6'/%3E%3C/svg%3E"); | |
| 1521 | + background-size: contain; | |
| 1522 | + background-repeat: no-repeat; | |
| 1523 | + vertical-align: middle; | |
| 1524 | +} | |
| 1525 | + | |
| 1526 | +#menu1 { | |
| 1527 | + padding-top: 60px; | |
| 1528 | +} | |
| 1529 | + | |
| 1530 | +.flickity-page-dots .dot { | |
| 1531 | + display: none; | |
| 1532 | +} | |
| 1533 | + | |
| 1534 | +.wpcf7-list-item-label { | |
| 1535 | + font-size: 17px; | |
| 1536 | + display: inline-block; | |
| 1537 | + vertical-align: top; | |
| 1538 | + padding-left: 0.4em; | |
| 1539 | + line-height: 30px; | |
| 1540 | + color:#004071; | |
| 1541 | +} | |
| 1542 | +.wpcf7-form a{ | |
| 1543 | + color:#000; | |
| 1544 | + font-weight:600; | |
| 1545 | +} | |
| 1546 | + | |
| 1547 | +.wpcf7-list-item-label a{ | |
| 1548 | + font-weight:700; | |
| 1549 | + color:#004071; | |
| 1550 | +} | |
| 1551 | + | |
| 1552 | +.wpcf7-list-item label { | |
| 1553 | + display: flex; | |
| 1554 | + align-items: flex-start; | |
| 1555 | +} | |
| 1556 | + | |
| 1557 | +.wpcf7-list-item input[type="checkbox"] { | |
| 1558 | + margin-top: 0.2em; | |
| 1559 | +} | |
| 1560 | + | |
| 1561 | +#menu-vertical-menu-footer .menu-item { | |
| 1562 | + margin-left: 20px; | |
| 1563 | +} | |
| 1564 | + | |
| 1565 | +/* Hériter du style pour les Exigences et le Mandat dans une offre d'emploi */ | |
| 1566 | +.default-text * { | |
| 1567 | + font-size: inherit !important; | |
| 1568 | + padding-top: inherit !important; | |
| 1569 | + font-family: inherit !important; | |
| 1570 | + background-color: inherit !important; | |
| 1571 | +} | |
| 1572 | + | |
| 1573 | +/* Hériter du style pour Informations_de_base et Conditions_de_travail dans une offre d'emploi */ | |
| 1574 | +.Informations_de_base *, .Conditions_de_travail * { | |
| 1575 | + font-size: inherit !important; | |
| 1576 | +} | |
| 1577 | + | |
| 1578 | +/*homepage hero menu*/ | |
| 1579 | +.full-width-div { | |
| 1580 | + display: flex; | |
| 1581 | + flex-wrap: wrap; | |
| 1582 | + justify-content: space-between; | |
| 1583 | +} | |
| 1584 | + | |
| 1585 | +.image-container { | |
| 1586 | + width: calc(33.33% - 5px); | |
| 1587 | + flex-grow: 1; | |
| 1588 | + position: relative; | |
| 1589 | + text-align: center; | |
| 1590 | + font-weight: bold; | |
| 1591 | + display: inline-block; | |
| 1592 | + margin: 0; | |
| 1593 | + padding: 0; | |
| 1594 | + box-sizing: border-box; | |
| 1595 | +} | |
| 1596 | +.image-container::after { | |
| 1597 | + content: ""; | |
| 1598 | + position: absolute; | |
| 1599 | + inset: 0; | |
| 1600 | + background: linear-gradient( | |
| 1601 | + to bottom, | |
| 1602 | + rgba(230, 159, 67, 0.2) 25%, | |
| 1603 | + rgb(51, 46, 116, 0.9) 100% | |
| 1604 | + ); | |
| 1605 | + pointer-events: none; | |
| 1606 | + z-index:0; | |
| 1607 | +} | |
| 1608 | +.image-container:hover::after { | |
| 1609 | + background: linear-gradient( | |
| 1610 | + to bottom, | |
| 1611 | + rgb(44, 142, 151, 0.9) 30%, | |
| 1612 | + rgba(74, 39, 133, 0.9) 90% | |
| 1613 | + ); | |
| 1614 | +} | |
| 1615 | +.image-container img { | |
| 1616 | + width: 100%; | |
| 1617 | + max-width: 100%; | |
| 1618 | + height: auto; | |
| 1619 | + margin-bottom: 0px; | |
| 1620 | + display: block; | |
| 1621 | +} | |
| 1622 | +.image-container .text { | |
| 1623 | + position: absolute; | |
| 1624 | + bottom: 0; | |
| 1625 | + left: 0; | |
| 1626 | + width: 100%; | |
| 1627 | + text-align: center; | |
| 1628 | + padding: 10px; | |
| 1629 | + z-index: 1; | |
| 1630 | + transform: translateY(0); | |
| 1631 | + transition: | |
| 1632 | + top 0.4s ease, | |
| 1633 | + bottom 0.4s ease, | |
| 1634 | + transform 0.4s ease, | |
| 1635 | + background 0.4s ease, | |
| 1636 | + opacity 0.4s ease; | |
| 1637 | +} | |
| 1638 | +.image-container:hover .text { | |
| 1639 | + bottom: auto; | |
| 1640 | + top: 50%; | |
| 1641 | + transform: translateY(-50%); | |
| 1642 | +} | |
| 1643 | +.image-container .text span { | |
| 1644 | + color: white; | |
| 1645 | + font-size: 25px; | |
| 1646 | + font-weight: normal; | |
| 1647 | + z-index: 1; | |
| 1648 | +} | |
| 1649 | + | |
| 1650 | +@media (max-width: 767px) { | |
| 1651 | + .image-container { | |
| 1652 | + width: 100%; | |
| 1653 | + } | |
| 1654 | + .text span { | |
| 1655 | + font-size: 20px; | |
| 1656 | + line-height: 75%; | |
| 1657 | + } | |
| 1658 | +} | |
| 1659 | + | |
| 1660 | +.hero-text { | |
| 1661 | + color: white; | |
| 1662 | + position: relative; | |
| 1663 | +} | |
| 1664 | + | |
| 1665 | +.hero-text span { | |
| 1666 | + display: block; | |
| 1667 | + margin: 11px 0 17px 0; | |
| 1668 | + font-size: 30px; | |
| 1669 | + color: white; | |
| 1670 | + position: relative; | |
| 1671 | +} | |
| 1672 | + | |
| 1673 | +/*single job*/ | |
| 1674 | +.article__title { | |
| 1675 | + margin-bottom: -60px !important; | |
| 1676 | + margin-top: -60px !important; | |
| 1677 | + margin-left: -150% !important; | |
| 1678 | + margin-right: -150% !important; | |
| 1679 | + position: relative; | |
| 1680 | + z-index:5; | |
| 1681 | +} | |
| 1682 | +.article__title.text-center h1 { | |
| 1683 | + padding-left: 37.5555%; | |
| 1684 | + padding-right: 40%; | |
| 1685 | + padding-bottom: 125px; | |
| 1686 | + padding-top: 100px; | |
| 1687 | + font-size: 40px; | |
| 1688 | +} | |
| 1689 | + | |
| 1690 | +.vc_row.HeroNoPadding [class*="col-"] { | |
| 1691 | + padding-left: 0 !important; | |
| 1692 | + padding-right: 0 !important; | |
| 1693 | + margin-left: 0px; | |
| 1694 | + margin-right: 0px; | |
| 1695 | +} | |
| 1696 | + | |
| 1697 | +.article__title.text-center { | |
| 1698 | + text-align: left; | |
| 1699 | +} | |
| 1700 | + | |
| 1701 | +.nowrap { | |
| 1702 | + white-space: nowrap; | |
| 1703 | +} | |
| 1704 | + | |
| 1705 | +/*job listing*/ | |
| 1706 | +.load_more_jobs strong { | |
| 1707 | + font-size: 20px; | |
| 1708 | + color: black; | |
| 1709 | + font-weight: bold ; | |
| 1710 | +} | |
| 1711 | + | |
| 1712 | + | |
| 1713 | +/*home page hero*/ | |
| 1714 | +.hero-video::after { | |
| 1715 | + content: ""; | |
| 1716 | + position: absolute; | |
| 1717 | + inset: 0; | |
| 1718 | + background: linear-gradient( | |
| 1719 | + to bottom, | |
| 1720 | + rgba(230, 159, 67, 0.3) 0%, | |
| 1721 | + rgba(74, 39, 133, 0.8) 90% | |
| 1722 | + ); | |
| 1723 | + z-index: 1; | |
| 1724 | + pointer-events: none; | |
| 1725 | +} | |
| 1726 | + | |
| 1727 | +a.su-button.su-button-style-flat.hero-btn{ | |
| 1728 | + border: 4px solid #34ACAA !important; | |
| 1729 | +} | |
| 1730 | + | |
| 1731 | +a.su-button.su-button-style-flat.hero-btn:hover{ | |
| 1732 | + background-color: #ffffff !important; | |
| 1733 | +} | |
| 1734 | +a.su-button.su-button-style-flat { | |
| 1735 | + transition: background-color 0.3s ease; | |
| 1736 | +} | |
| 1737 | +a.su-button.su-button-style-flat span { | |
| 1738 | + transition: color 0.3s ease; | |
| 1739 | +} | |
| 1740 | +a.su-button.su-button-style-flat.hero-btn:hover span{ | |
| 1741 | + color: #34ACAA !important; | |
| 1742 | +} | |
| 1743 | + | |
| 1744 | + | |
| 1745 | +/*search*/ | |
| 1746 | +.job_filters { | |
| 1747 | + background-color: transparent; | |
| 1748 | + border: none; | |
| 1749 | +} | |
| 1750 | + | |
| 1751 | +.job_filters label { | |
| 1752 | + font-weight: bold; | |
| 1753 | +} | |
| 1754 | + | |
| 1755 | +.job_filters input[type="text"], | |
| 1756 | +.job_filters input[type="number"] { | |
| 1757 | + width: 100%; | |
| 1758 | + padding: 10px; | |
| 1759 | + border: 1px solid #ccc; | |
| 1760 | + border-radius: 3px; | |
| 1761 | +} | |
| 1762 | + | |
| 1763 | +.job_filters input[type="submit"] { | |
| 1764 | + background-color: #0032FF; | |
| 1765 | + color: #fff; | |
| 1766 | + padding: 10px 20px; | |
| 1767 | + border: none; | |
| 1768 | + border-radius: 3px; | |
| 1769 | + cursor: pointer; | |
| 1770 | +} | |
| 1771 | + | |
| 1772 | +.job_filters input[type="submit"]:hover { | |
| 1773 | + background-color: #0022CC; | |
| 1774 | +} | |
| 1775 | + | |
| 1776 | +.job_filters .job_types li{ | |
| 1777 | + padding-left:0px | |
| 1778 | +} | |
| 1779 | + | |
| 1780 | + | |
| 1781 | +ul.job_types li { | |
| 1782 | + list-style: none !IMPORTANT; | |
| 1783 | +} | |
| 1784 | +.input-select { | |
| 1785 | + display: none; | |
| 1786 | +} | |
| 1787 | +.rss_link { | |
| 1788 | + display: none; | |
| 1789 | +} | |
| 1790 | +.alignnone { | |
| 1791 | + width: 100%; | |
| 1792 | + height: auto; | |
| 1793 | +} | |
| 1794 | + | |
| 1795 | +.wpcf7-checkbox .wpcf7-list-item { | |
| 1796 | + display: inline-block; | |
| 1797 | + width: 31%; | |
| 1798 | + box-sizing: border-box; | |
| 1799 | + vertical-align: top; | |
| 1800 | + margin-top:20px; | |
| 1801 | +} | |
| 1802 | +.wpcf7-checkbox .wpcf7-list-item:nth-child(3n) { | |
| 1803 | + clear: both; | |
| 1804 | +} | |
| 1805 | + | |
| 1806 | + | |
| 1807 | +/* home page bsl special */ | |
| 1808 | +.custom-checklist { | |
| 1809 | + list-style: none; | |
| 1810 | + padding: 0; | |
| 1811 | + margin: 30px 0 0 0 !important; | |
| 1812 | +} | |
| 1813 | + | |
| 1814 | +.custom-checklist li { | |
| 1815 | + display: flex; | |
| 1816 | + align-items: flex-start; | |
| 1817 | + margin-left: 0px !important; | |
| 1818 | + font-size: 19px; | |
| 1819 | + color: #16375E; | |
| 1820 | +} | |
| 1821 | + | |
| 1822 | +.check-icon { | |
| 1823 | + flex-shrink: 0; | |
| 1824 | + margin-right: 10px; | |
| 1825 | + margin-top: -3px; | |
| 1826 | +} | |
| 1827 | + | |
| 1828 | +.button-row { | |
| 1829 | + display: flex; | |
| 1830 | + gap: 30px; | |
| 1831 | + justify-content: center; | |
| 1832 | + flex-wrap: wrap; | |
| 1833 | +} | |
| 1834 | + | |
| 1835 | +.custom-button { | |
| 1836 | + display: flex; | |
| 1837 | + align-items: center; | |
| 1838 | + gap: 16px; | |
| 1839 | + border: 3px solid #0d2f5a; | |
| 1840 | + background-color: #0d2f5a; | |
| 1841 | + color: white; | |
| 1842 | + padding: 20px 25px; | |
| 1843 | + border-radius: 50px; | |
| 1844 | + text-decoration: none; | |
| 1845 | + font-weight: bold; | |
| 1846 | + font-size: 18px; | |
| 1847 | + font-family: sans-serif; | |
| 1848 | + min-width: 280px; | |
| 1849 | + justify-content: flex-start; | |
| 1850 | +} | |
| 1851 | + | |
| 1852 | +.custom-button:hover { | |
| 1853 | + background-color:rgba(256, 256, 256, 0); | |
| 1854 | + color: #0d2f5a; | |
| 1855 | +} | |
| 1856 | +.custom-button .icon { | |
| 1857 | + display: flex; | |
| 1858 | + align-items: center; | |
| 1859 | + justify-content: center; | |
| 1860 | +} | |
| 1861 | + | |
| 1862 | +.custom-button svg { | |
| 1863 | + height: 50px; | |
| 1864 | + min-width: 50px; | |
| 1865 | +} | |
| 1866 | + | |
| 1867 | +.custom-button .text { | |
| 1868 | + line-height: 1.3; | |
| 1869 | + text-align: left; | |
| 1870 | + color: #fff; | |
| 1871 | + font-size: 25px; | |
| 1872 | +} | |
| 1873 | +.custom-button:hover .text { | |
| 1874 | + color: #0d2f5a; | |
| 1875 | +} | |
| 1876 | + | |
| 1877 | +.button-row-bckground { | |
| 1878 | + background: linear-gradient( | |
| 1879 | + to bottom, | |
| 1880 | + rgba(230, 159, 67, 0.2) 25%, | |
| 1881 | + rgb(51, 46, 116, 0.2) 100% | |
| 1882 | + ); | |
| 1883 | +} | |
| 1884 | + | |
| 1885 | +.banner { | |
| 1886 | + margin: 0; | |
| 1887 | + background-color: #17355f; | |
| 1888 | +} | |
| 1889 | +.banner-container { | |
| 1890 | + display: flex; | |
| 1891 | + align-items: center; | |
| 1892 | + justify-content: center; | |
| 1893 | + padding: 60px 100px 60px 60px !important; | |
| 1894 | +} | |
| 1895 | +.home-chezNous-section img{ | |
| 1896 | + border-radius:15px; | |
| 1897 | +} | |
| 1898 | +.home-chezNous-section { | |
| 1899 | + position: relative; | |
| 1900 | + text-align: right; | |
| 1901 | + font-weight: bold; | |
| 1902 | + display: inline-block; | |
| 1903 | + margin: 0; | |
| 1904 | + height: auto; | |
| 1905 | + } | |
| 1906 | +.home-chezNous-section .chezNous-btns { | |
| 1907 | + position: absolute; | |
| 1908 | + bottom: 50%; | |
| 1909 | + left: 65%; | |
| 1910 | + width: 100%; | |
| 1911 | + text-align: center; | |
| 1912 | + width: auto; | |
| 1913 | +} | |
| 1914 | +.home-chezNous-section .chezNous-btn { | |
| 1915 | + color: #F67E4A; | |
| 1916 | + background: #fff; | |
| 1917 | + border: 3px solid #fff; | |
| 1918 | + padding: 7px; | |
| 1919 | + font-size: 35px; | |
| 1920 | + border-radius:10px; | |
| 1921 | + font-weight: 900; | |
| 1922 | + box-shadow: -4px 6px 0px 0px #C2653C; | |
| 1923 | +} | |
| 1924 | +.home-chezNous-section .chezNous-btn:hover { | |
| 1925 | + border: 3px solid #fff; | |
| 1926 | + background: #F67E4A; | |
| 1927 | + color: white; | |
| 1928 | +} | |
| 1929 | +.chezNous-btns a { | |
| 1930 | + display: inline-block; | |
| 1931 | + text-decoration: none; | |
| 1932 | +} | |
| 1933 | +.chezNous-link { | |
| 1934 | + margin-top: 20px; | |
| 1935 | + display: inline-block; | |
| 1936 | + color: #fff !important; | |
| 1937 | + font-weight: normal; | |
| 1938 | + font-size: 20px; | |
| 1939 | +} | |
| 1940 | +.chezNous-link:hover { | |
| 1941 | + text-decoration: underline; | |
| 1942 | + font-weight:bold; | |
| 1943 | +} | |
| 1944 | + | |
| 1945 | +.banner-container div:has(.home-chezNous-section) { | |
| 1946 | + text-align: center; | |
| 1947 | +} | |
| 1948 | +.chezNous-autre { | |
| 1949 | + background: white !important; | |
| 1950 | + border-radius:15px; | |
| 1951 | + display: flex; | |
| 1952 | + align-items: center; | |
| 1953 | + margin-left: -60px; | |
| 1954 | +} | |
| 1955 | +.banner-container.vc_row { | |
| 1956 | + display: flex; | |
| 1957 | + align-items: stretch; | |
| 1958 | +} | |
| 1959 | +.vc_col-has-fill>.vc_column-inner, .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_vc_row>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_vc_row_inner>.vc_row>.vc_vc_column_inner>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_vc_column_inner>.vc_column_container>.vc_column-inner, .vc_section.vc_section-has-fill, .vc_section.vc_section-has-fill+.vc_row-full-width+.vc_section, .vc_section.vc_section-has-fill+.vc_section{ | |
| 1960 | + padding-top: 0px; | |
| 1961 | +} | |
| 1962 | + | |
| 1963 | +/*footer*/ | |
| 1964 | +.footer-t { | |
| 1965 | + color:#fff !important; | |
| 1966 | + font-weight: bold !important; | |
| 1967 | + font-size: 30px ; | |
| 1968 | +} | |
| 1969 | +.footer a { | |
| 1970 | + color:#fff !important; | |
| 1971 | +} | |
| 1972 | + | |
| 1973 | +.footer-with-b { | |
| 1974 | + display: flex; | |
| 1975 | + flex-direction: column; | |
| 1976 | + align-items: flex-start; | |
| 1977 | + gap: 0px; | |
| 1978 | +} | |
| 1979 | + | |
| 1980 | +.footer-b { | |
| 1981 | + display: inline-block; | |
| 1982 | + padding: 12px 30px; | |
| 1983 | + color: white !important; | |
| 1984 | + border: 2px solid white; | |
| 1985 | + border-radius: 10px; | |
| 1986 | + text-decoration: none; | |
| 1987 | + font-weight: bold; | |
| 1988 | + background: transparent; | |
| 1989 | + transition: background 0.3s, color 0.3s; | |
| 1990 | + text-align: center; | |
| 1991 | + min-width: 230px; | |
| 1992 | + font-size: 20px; | |
| 1993 | +} | |
| 1994 | +.footer-b:hover { | |
| 1995 | + background: white; | |
| 1996 | + color: #2b546b !important; | |
| 1997 | +} | |
| 1998 | + | |
| 1999 | +.left-section a{ | |
| 2000 | + color: #fff !important; | |
| 2001 | + font-size: 23px; | |
| 2002 | +} | |
| 2003 | +.left-section a:hover{ | |
| 2004 | + color: #0067a5 !important; | |
| 2005 | +} | |
| 2006 | + a.footer-t:hover{ | |
| 2007 | + color: #95F0FE !important; | |
| 2008 | +} | |
| 2009 | +/* home-job card */ | |
| 2010 | +.home-jobs .job-listing-wrapper { | |
| 2011 | + overflow-x: auto; | |
| 2012 | + overflow-y: hidden; | |
| 2013 | + white-space: nowrap; | |
| 2014 | + padding-bottom: 20px; | |
| 2015 | + scrollbar-width: none; | |
| 2016 | +} | |
| 2017 | +.home-jobs .job-listing-wrapper::-webkit-scrollbar { | |
| 2018 | + display: none; /* Chrome, Safari */ | |
| 2019 | +} | |
| 2020 | +.home-jobs .job_listings { | |
| 2021 | + display: flex; | |
| 2022 | + flex-wrap: nowrap; | |
| 2023 | + gap: 20px; | |
| 2024 | + list-style: none; | |
| 2025 | + padding: 0; | |
| 2026 | + margin: 5px; | |
| 2027 | +} | |
| 2028 | +.home-jobs .job-card { | |
| 2029 | + background:#C6C6B845; | |
| 2030 | + border-radius: 10px; | |
| 2031 | + box-shadow: 0 4px 15px rgba(0,0,0,0.05); | |
| 2032 | + padding: 40px 20px; | |
| 2033 | + width: 300px; | |
| 2034 | + min-width: 325px; | |
| 2035 | + min-height: 420px; | |
| 2036 | + white-space: normal; | |
| 2037 | + display: flex; | |
| 2038 | + flex-direction: column; | |
| 2039 | + justify-content: space-between; | |
| 2040 | +} | |
| 2041 | + | |
| 2042 | +.home-jobs .job-card:hover{ | |
| 2043 | + background:#0067a5; | |
| 2044 | +} | |
| 2045 | +.home-jobs .job-listing-link-button{ | |
| 2046 | + background: transparent; | |
| 2047 | + border: 2px solid #7CAFDE !important; | |
| 2048 | + color: #7CAFDE; | |
| 2049 | + text-align: center; | |
| 2050 | + border-radius: 10px; | |
| 2051 | + margin: 0 120px 0 0!important; | |
| 2052 | + padding: 5px!important; | |
| 2053 | + font-size: 19px; | |
| 2054 | +} | |
| 2055 | +.home-jobs .job-card:hover .job-listing-link-button { | |
| 2056 | + background-color: transparent; | |
| 2057 | + color: white; | |
| 2058 | + border-color:#fff !important; | |
| 2059 | +} | |
| 2060 | + | |
| 2061 | + | |
| 2062 | +.home-jobs .job-title h3 { | |
| 2063 | + font-size: 23px; | |
| 2064 | + color: #000; | |
| 2065 | + margin-bottom: 15px; | |
| 2066 | + font-weight: bolder; | |
| 2067 | +} | |
| 2068 | +.home-jobs .job-card:hover .job-title h3{ | |
| 2069 | + color:#fff; | |
| 2070 | +} | |
| 2071 | +.home-jobs .job-type-location span { | |
| 2072 | + display: flex; | |
| 2073 | + align-items: center; | |
| 2074 | + gap: 8px; | |
| 2075 | + color: #000; | |
| 2076 | + font-weight:bolder; | |
| 2077 | + margin-bottom: 8px; | |
| 2078 | + font-size: 20px; | |
| 2079 | + line-height: 18px; | |
| 2080 | + min-height:40px; | |
| 2081 | +} | |
| 2082 | +.home-jobs .job-type-location{ | |
| 2083 | + border-top:1px solid #7cafde; | |
| 2084 | +} | |
| 2085 | +.home-jobs .job-card:hover .job-type-location span{ | |
| 2086 | + color:#fff; | |
| 2087 | +} | |
| 2088 | +.home-jobs .job-type-location span.apply-button{ | |
| 2089 | + min-height:10px; | |
| 2090 | +} | |
| 2091 | +.home-jobs ul.job_listings li.job_listing, .home-jobs ul.job_listings { | |
| 2092 | + border: none !important; | |
| 2093 | +} | |
| 2094 | +ul.job_listings li.job_listing a{ | |
| 2095 | + padding: 0 ; | |
| 2096 | +} | |
| 2097 | +ul.job_listings li.job_listing a:hover{ | |
| 2098 | + background:transparent; | |
| 2099 | +} | |
| 2100 | +.home-jobs .job-type-location i { | |
| 2101 | + color: #000; | |
| 2102 | + display:none; | |
| 2103 | +} | |
| 2104 | +.home-jobs .job-listing-link { | |
| 2105 | + text-decoration: none; | |
| 2106 | + color: inherit; | |
| 2107 | +} | |
| 2108 | +.home-jobs .nav-btn { | |
| 2109 | + background: none; | |
| 2110 | + border:none; | |
| 2111 | + border: none; | |
| 2112 | + padding: 0; | |
| 2113 | + cursor: pointer; | |
| 2114 | + transition: transform 0.2s ease; | |
| 2115 | +} | |
| 2116 | +.home-jobs .nav-btn svg circle { | |
| 2117 | + transition: fill 0.3s ease, stroke 0.3s ease; | |
| 2118 | +} | |
| 2119 | +.home-jobs .nav-btn svg path { | |
| 2120 | + transition: stroke 0.3s ease; | |
| 2121 | +} | |
| 2122 | + | |
| 2123 | +.home-jobs .nav-btn:hover svg path { | |
| 2124 | + stroke: white; | |
| 2125 | +} | |
| 2126 | +.home-jobs .nav-btns { | |
| 2127 | + text-align: right; | |
| 2128 | +} | |
| 2129 | +.toutes-offres{ | |
| 2130 | + text-align: center; | |
| 2131 | + border: 2px solid #2b546b; | |
| 2132 | + color: #2b546b; | |
| 2133 | + padding: 0px 5px; | |
| 2134 | + border-radius: 35px; | |
| 2135 | +} | |
| 2136 | +.toutes-offres:hover{ | |
| 2137 | + background:#2b546b; | |
| 2138 | +} | |
| 2139 | +.toutes-offres a{ | |
| 2140 | + color:#2b546b; | |
| 2141 | + font-weight: bold; | |
| 2142 | + font-size:19px; | |
| 2143 | + line-height: 25px; | |
| 2144 | + display: inline-block; | |
| 2145 | + margin-top:4px; | |
| 2146 | + width:100%; | |
| 2147 | +} | |
| 2148 | +.toutes-offres:hover a{ | |
| 2149 | + color:#fff; | |
| 2150 | +} | |
| 2151 | +.home-jobs .wpb_wrapper:has(.wpb_wrapper .toutes-offres){ | |
| 2152 | + min-height:420px; | |
| 2153 | + white-space: normal; | |
| 2154 | + display: flex; | |
| 2155 | + flex-direction: column; | |
| 2156 | + justify-content: space-between; | |
| 2157 | +} | |
| 2158 | + | |
| 2159 | +div.wpcf7[data-wpcf7-id="4890"] .wpcf7-not-valid:not(input){ | |
| 2160 | + border: 0px; | |
| 2161 | +} | |
| 2162 | +div.wpcf7 .wpcf7-not-valid::before{ | |
| 2163 | + content: "Ce champ est requis.\A\A"; | |
| 2164 | + color: red; | |
| 2165 | + font-weight: bold; | |
| 2166 | + white-space: pre-line; | |
| 2167 | +} | |
| 2168 | + | |
| 2169 | +.wpcf7-form-control.wpcf7-text, | |
| 2170 | +.wpcf7-form-control.wpcf7-email { | |
| 2171 | + width: 100%; | |
| 2172 | + border-radius: 10px; | |
| 2173 | +} | |
| 2174 | + | |
| 2175 | +a[href*="desabonnement"], | |
| 2176 | +a[href*="désabonnement"] { | |
| 2177 | + display: inline-block; | |
| 2178 | + margin-top: 15px; | |
| 2179 | + color: #1e88e5; | |
| 2180 | + font-size: 14px; | |
| 2181 | + text-decoration: underline; | |
| 2182 | +} | |
| 2183 | + | |
| 2184 | +a[href*="desabonnement"]:hover { | |
| 2185 | + text-decoration: none; | |
| 2186 | +} | |
| 2187 | + | |
| 2188 | +@media (min-width: 992px) { | |
| 2189 | + .footer-6 .col-md-4:first-of-type { | |
| 2190 | + width: 45%; | |
| 2191 | + } | |
| 2192 | + .footer-6 .col-md-4:not(:first-of-type) { | |
| 2193 | + width: 27.5%; | |
| 2194 | + } | |
| 2195 | +} | |
| 2196 | + | |
| 2197 | +@media (min-width: 765px) { | |
| 2198 | + .footer-6 .col-md-4:first-of-type { | |
| 2199 | + border-right:2px solid white; | |
| 2200 | + } | |
| 2201 | +} | |
| 2202 | +.conditions-de-travail { | |
| 2203 | + display: flex; | |
| 2204 | + flex-direction: column; | |
| 2205 | + font-size: 16px; | |
| 2206 | + margin-bottom: 1.5rem; | |
| 2207 | +} | |
| 2208 | + | |
| 2209 | +.ct-row { | |
| 2210 | + display: flex; | |
| 2211 | + gap: 20px; | |
| 2212 | +} | |
| 2213 | + | |
| 2214 | +.ct-label { | |
| 2215 | + width: 300px; | |
| 2216 | + font-weight: bold; | |
| 2217 | + color:#000; | |
| 2218 | + font-size:19px; | |
| 2219 | +} | |
| 2220 | + | |
| 2221 | +.ct-value { | |
| 2222 | + font-size:19px; | |
| 2223 | + color: #000000; | |
| 2224 | +} | |
| 2225 | + | |
| 2226 | +.informations-de-base { | |
| 2227 | + display: flex; | |
| 2228 | + flex-wrap: wrap; | |
| 2229 | + gap: 25px; | |
| 2230 | + align-items: center; | |
| 2231 | + margin-bottom: 1.5rem; | |
| 2232 | + background: #16375E10 ; | |
| 2233 | + width: 300%; | |
| 2234 | + margin-left: -100%; | |
| 2235 | + padding-left: 100%; | |
| 2236 | + padding-top: 15px; | |
| 2237 | + padding-bottom: 15px; | |
| 2238 | +} | |
| 2239 | + | |
| 2240 | +.informations-de-base .info-item { | |
| 2241 | + display: flex; | |
| 2242 | + align-items: center; | |
| 2243 | + gap: 10px; | |
| 2244 | +} | |
| 2245 | + | |
| 2246 | +.informations-de-base .icon svg { | |
| 2247 | + display: inline-block; | |
| 2248 | + vertical-align: middle; | |
| 2249 | +} | |
| 2250 | + | |
| 2251 | +.informations-de-base .info-text { | |
| 2252 | + font-size: 16px; | |
| 2253 | + color: #16375e; | |
| 2254 | + padding-top: 12px; | |
| 2255 | +} | |
| 2256 | + | |
| 2257 | +.apply-buttons { | |
| 2258 | + display: flex; | |
| 2259 | + justify-content: space-between; | |
| 2260 | + flex-wrap: wrap; | |
| 2261 | + gap: 0px; | |
| 2262 | + margin-top: 70px; | |
| 2263 | + width: 300%; | |
| 2264 | + margin-left: -100%; | |
| 2265 | + padding: 30px 100% 200px 100%; | |
| 2266 | + margin-bottom:-170px; | |
| 2267 | +} | |
| 2268 | +.apply-buttons-1 h2, | |
| 2269 | +.apply-buttons-2 h2 { | |
| 2270 | + color: #004071; | |
| 2271 | + font-size: 18px; | |
| 2272 | + font-weight: bold; | |
| 2273 | +} | |
| 2274 | +.apply-buttons-2 h2 { | |
| 2275 | + margin-bottom: 27px; | |
| 2276 | +} | |
| 2277 | +.apply-buttons .application_button.button { | |
| 2278 | + background-color: #004071; | |
| 2279 | + color: #fff; | |
| 2280 | + border: 2px solid #004071; | |
| 2281 | + border-radius: 5px; | |
| 2282 | + font-weight: bold; | |
| 2283 | + font-size: 20px; | |
| 2284 | + width:fit-content; | |
| 2285 | + height:min-content; | |
| 2286 | + padding:9px 25px; | |
| 2287 | + box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3); | |
| 2288 | + margin-bottom:10px; | |
| 2289 | +} | |
| 2290 | +.apply-buttons .application_button.button:hover { | |
| 2291 | + background-color: transparent; | |
| 2292 | + color: #004071; | |
| 2293 | +} | |
| 2294 | + | |
| 2295 | +.apply-buttons .apply-buttons-2 a { | |
| 2296 | + background-color: #004071; | |
| 2297 | + color: #fff; | |
| 2298 | + border: 2px solid #004071; | |
| 2299 | + border-radius: 5px; | |
| 2300 | + font-weight: bold; | |
| 2301 | + font-size: 20px; | |
| 2302 | + padding: 5px 15px; | |
| 2303 | + box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3); | |
| 2304 | +} | |
| 2305 | +.apply-buttons .apply-buttons-2 a:hover { | |
| 2306 | + background-color: transparent; | |
| 2307 | + color: #004071; | |
| 2308 | +} | |
| 2309 | +.job-manager-single-alert-link{ | |
| 2310 | + margin-top: -150px; | |
| 2311 | +} | |
| 2312 | +.job-manager-single-alert-link a{ | |
| 2313 | + color: #57b4b0; | |
| 2314 | + font-weight: 600; | |
| 2315 | +} | |
| 2316 | +.job-manager-single-alert-link a:hover{ | |
| 2317 | + color: #F67E4A; | |
| 2318 | +} | |
| 2319 | +.single-job_listing section{ | |
| 2320 | + padding-bottom: 40px !important; | |
| 2321 | +} | |
| 2322 | + | |
| 2323 | +.liste-jobs-tout ul.job_listings{ | |
| 2324 | + border-top: none !important; | |
| 2325 | + padding: 10px 7% 50px ; | |
| 2326 | + border: none !important; | |
| 2327 | + background:#c6c6b830; | |
| 2328 | +} | |
| 2329 | + | |
| 2330 | +.liste-jobs-tout h2{ | |
| 2331 | + width: 300%; | |
| 2332 | + margin-left: -100%; | |
| 2333 | + padding: 40px 100% 20px 100%; | |
| 2334 | + background: #EFF2F4; | |
| 2335 | + margin-bottom: 0px; | |
| 2336 | + margin-top: -60px; | |
| 2337 | + font-size: 35px; | |
| 2338 | +} | |
| 2339 | + | |
| 2340 | +.liste-jobs-tout .job_filters .showing_jobs{ | |
| 2341 | + border-top: none; | |
| 2342 | +} | |
| 2343 | + | |
| 2344 | +.liste-jobs-tout .job-type-location { | |
| 2345 | + display: flex; | |
| 2346 | + flex-wrap: nowrap; | |
| 2347 | + align-items: center; | |
| 2348 | +} | |
| 2349 | +.liste-jobs-tout .job-listing-link-button { | |
| 2350 | + margin-left: auto; | |
| 2351 | + background: transparent; | |
| 2352 | + border: 2px solid #004071 !important; | |
| 2353 | + color: #004071; | |
| 2354 | + border-radius: 5px; | |
| 2355 | + margin-bottom: 20px; | |
| 2356 | + padding: 5px 10px !important; | |
| 2357 | + font-size: 19px; | |
| 2358 | +} | |
| 2359 | + | |
| 2360 | +.liste-jobs-tout .job-listing-link-button:hover, .liste-jobs-tout .job-listing-link-button:active, .liste-jobs-tout .job-listing-link-button:focus{ | |
| 2361 | + background: #004071; | |
| 2362 | + color: #fff; | |
| 2363 | +} | |
| 2364 | +.liste-jobs-tout .job-title h3 { | |
| 2365 | + font-size: 25px; | |
| 2366 | + margin-top: 20px; | |
| 2367 | + color: #004071; | |
| 2368 | + font-weight: bold; | |
| 2369 | + max-width: 55vw; | |
| 2370 | +} | |
| 2371 | + | |
| 2372 | +.liste-jobs-tout ul.job_listings li.job_listing { | |
| 2373 | + padding: 0px 10px 10px 0px ; | |
| 2374 | + border-bottom: 1px solid #16375E20; | |
| 2375 | +} | |
| 2376 | +.liste-jobs-tout .search_jobs{ | |
| 2377 | + width: 300%; | |
| 2378 | + margin-left: -100%; | |
| 2379 | + padding: 30px 107% 30px; | |
| 2380 | + background:#7cafde82 | |
| 2381 | +} | |
| 2382 | +.liste-jobs-tout .job_types{ | |
| 2383 | + margin-top: -50px; | |
| 2384 | + width: 300%; | |
| 2385 | + margin-left: -100%; | |
| 2386 | + padding: 0 107% 0 !important; | |
| 2387 | +} | |
| 2388 | + | |
| 2389 | +.liste-jobs-tout .showing_jobs{ | |
| 2390 | + width: 300%; | |
| 2391 | + margin-left: -100%; | |
| 2392 | + margin-top:10px; | |
| 2393 | + padding: 0 107% 0; | |
| 2394 | +} | |
| 2395 | +.liste-jobs-tout .search_submit input{ | |
| 2396 | + background: #004071 !important; | |
| 2397 | + border: 2px solid #004071; | |
| 2398 | + color: #fff !important; | |
| 2399 | + margin-right: 10px; | |
| 2400 | + border-radius: 5px; | |
| 2401 | + width: auto; | |
| 2402 | + height:auto; | |
| 2403 | + padding:0px 10px !important; | |
| 2404 | + font-size:19px; | |
| 2405 | +} | |
| 2406 | +.liste-jobs-tout .search_submit input:hover{ | |
| 2407 | + background:#fff !important; | |
| 2408 | + color: #004071 !important; | |
| 2409 | +} | |
| 2410 | + | |
| 2411 | +.job_listing-template-default.single-job_listing div.main-container div.container div.col-sm-10.col-md-8.col-sm-offset-1.col-md-offset-2{ | |
| 2412 | + margin-left:0px; | |
| 2413 | + margin-right:0px; | |
| 2414 | + width: auto; | |
| 2415 | +} | |
| 2416 | + | |
| 2417 | +.boxed.boxed--lg.border--round.bg--white:has(.cat-hero-text){ | |
| 2418 | + background: none; | |
| 2419 | + padding-left: 0px; | |
| 2420 | + padding-right: 0px; | |
| 2421 | + padding-bottom: 0px; | |
| 2422 | + margin-top: 5vh; | |
| 2423 | + margin-bottom: 0px; | |
| 2424 | + min-width: 100vw; | |
| 2425 | + min-height: 15vh; | |
| 2426 | +} | |
| 2427 | +.cat-hero-s-text{ | |
| 2428 | + color: #ffffff !important; | |
| 2429 | + font-size: 35px; | |
| 2430 | + line-height:100px; | |
| 2431 | +} | |
| 2432 | +.cat-hero-b-text{ | |
| 2433 | + color: #ffffff !important; | |
| 2434 | + font-size: 50px; | |
| 2435 | + line-height: 50px; | |
| 2436 | + font-weight: bold; | |
| 2437 | +} | |
| 2438 | +.col-md-10.col-md-offset-1.col-sm-12:has(.cat-hero-text){ | |
| 2439 | + margin-left: 0px; | |
| 2440 | +} | |
| 2441 | + | |
| 2442 | +footer::after { | |
| 2443 | + content: "© Gouvernement du Québec - 2025"; | |
| 2444 | + display: block; | |
| 2445 | + text-align: center; | |
| 2446 | + background-color: #fff; | |
| 2447 | + background-image: url('https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/06/logo_chum.png'); | |
| 2448 | + background-repeat: no-repeat; | |
| 2449 | + background-position: center 20px; | |
| 2450 | + background-size: 95px auto; | |
| 2451 | + padding-top: 100px; | |
| 2452 | + padding-bottom: 10px; | |
| 2453 | + font-size: 14px; | |
| 2454 | + font-weight: 500; | |
| 2455 | + margin-top: 30px; | |
| 2456 | + margin-bottom:-25px; | |
| 2457 | + padding-left: 40px; | |
| 2458 | + padding-right: 40px; | |
| 2459 | + white-space: pre-line; | |
| 2460 | + position: relative; | |
| 2461 | +} | |
| 2462 | + | |
| 2463 | +.job-manager-single-alert-link{ | |
| 2464 | + display: none; | |
| 2465 | +} | |
| 2466 | + | |
| 2467 | +@media only screen and (max-width: 600px) { | |
| 2468 | + .liste-jobs-tout h2{ | |
| 2469 | + margin-top: -160px; | |
| 2470 | + } | |
| 2471 | + .single-job_listing .a2a_kit::before { | |
| 2472 | + content: 'Partager\A' !important; | |
| 2473 | + white-space:pre-line !important; | |
| 2474 | + } | |
| 2475 | + .single-job_listing .a2a_kit{ | |
| 2476 | + display: block !important; | |
| 2477 | + } | |
| 2478 | + .apply-buttons .application_button.button{ | |
| 2479 | + min-width:175px; | |
| 2480 | + } | |
| 2481 | + .conditions-de-travail { | |
| 2482 | + display: block; | |
| 2483 | + } | |
| 2484 | + .ct-row { | |
| 2485 | + display: block; | |
| 2486 | + } | |
| 2487 | + .ct-value::before { | |
| 2488 | + content:'\A'; | |
| 2489 | + white-space:pre-line; | |
| 2490 | + } | |
| 2491 | + .job_description { | |
| 2492 | + font-size: 16px; | |
| 2493 | + } | |
| 2494 | + .single_job_listing .job_description h2 { | |
| 2495 | + padding-top: 10px; | |
| 2496 | + } | |
| 2497 | + .informations-de-base { | |
| 2498 | + display:block; | |
| 2499 | + } | |
| 2500 | + .article__title.text-center h1 { | |
| 2501 | + font-size: 17px; | |
| 2502 | + padding-bottom:170px; | |
| 2503 | + height:36vh; | |
| 2504 | + } | |
| 2505 | + .liste-jobs-tout .job-listing-link span { | |
| 2506 | + display:block; | |
| 2507 | + margin: 10px 0; | |
| 2508 | + padding:0px; | |
| 2509 | + font-size:16px !important; | |
| 2510 | + line-height:20px; | |
| 2511 | + } | |
| 2512 | + .liste-jobs-tout ul.job_listings li.job_listing a.job-listing-link-button{ | |
| 2513 | + margin-top:5px; | |
| 2514 | + margin-bottom:2px; | |
| 2515 | + text-align: center; | |
| 2516 | + } | |
| 2517 | + .liste-jobs-tout .job-type-location{ | |
| 2518 | + display: block; | |
| 2519 | + } | |
| 2520 | + .liste-jobs-tout .job-listing-link span { | |
| 2521 | + display: flex; | |
| 2522 | + align-items: flex-start; | |
| 2523 | + gap: 6px; | |
| 2524 | + } | |
| 2525 | + .liste-jobs-tout .job-type-location .job-type{ | |
| 2526 | + margin-right:0px; | |
| 2527 | + } | |
| 2528 | + .liste-jobs-tout ul.job_listings li.job_listing a{ | |
| 2529 | + min-width: 100%; | |
| 2530 | + } | |
| 2531 | + .liste-jobs-tout .job-title h3{ | |
| 2532 | + max-width: 100% !important; | |
| 2533 | + font-size:18px; | |
| 2534 | + } | |
| 2535 | + .liste-jobs-tout .job_types { | |
| 2536 | + margin-top: 0px !important; | |
| 2537 | + background-color:#7cafde82 !important; | |
| 2538 | + } | |
| 2539 | + .image-container .text span { | |
| 2540 | + font-size: 19px; | |
| 2541 | + } | |
| 2542 | + .image-container .text span | |
| 2543 | + .bar .logo { | |
| 2544 | + max-height: 90px; | |
| 2545 | + margin-top: 0.5px; | |
| 2546 | + } | |
| 2547 | + .bar__module a.btn--demo { | |
| 2548 | + width:100%; | |
| 2549 | + } | |
| 2550 | + .hero-text span:nth-child(2) { | |
| 2551 | + line-height: 40px !important; | |
| 2552 | + } | |
| 2553 | + .home-jobs .wpb_wrapper:has(.wpb_wrapper .toutes-offres) { | |
| 2554 | + min-height:170px; | |
| 2555 | + } | |
| 2556 | + .home-jobs .job-title h3 { | |
| 2557 | + font-size: 18px; | |
| 2558 | + } | |
| 2559 | + .home-jobs .job-card { | |
| 2560 | + width: 100px; | |
| 2561 | + min-width: 275px; | |
| 2562 | + min-height: 400px; | |
| 2563 | + } | |
| 2564 | + .home-jobs .job-listing-link-button { | |
| 2565 | + width: 100%; | |
| 2566 | + margin: 0px !important; | |
| 2567 | + padding: 0; | |
| 2568 | + } | |
| 2569 | + .home-jobs .job-type-location span { | |
| 2570 | + font-size: 16px; | |
| 2571 | + } | |
| 2572 | + .home-jobs .job_listings { | |
| 2573 | + gap: 7px; | |
| 2574 | + } | |
| 2575 | + .home-jobs { | |
| 2576 | + padding:0; | |
| 2577 | + } | |
| 2578 | + .home-jobs .wpb_column:has(.job-listing-wrapper){ | |
| 2579 | + margin-left:-30px; | |
| 2580 | + width: 120%; | |
| 2581 | + } | |
| 2582 | + .banner-container { | |
| 2583 | + padding: 10px 0 !important; | |
| 2584 | + } | |
| 2585 | + .home-chezNous-section .chezNous-btns { | |
| 2586 | + bottom: 30%; | |
| 2587 | + left: 57%; | |
| 2588 | + } | |
| 2589 | + .home-chezNous-section .chezNous-btn { | |
| 2590 | + padding: 0px 2px; | |
| 2591 | + font-size: 16px; | |
| 2592 | + font-weight: 900; | |
| 2593 | + } | |
| 2594 | + .temoignage-section{ | |
| 2595 | + margin-left:-30px; | |
| 2596 | + margin-right:-30px; | |
| 2597 | + margin-top:-10px; | |
| 2598 | + } | |
| 2599 | + h2{ | |
| 2600 | + font-size: 22px; | |
| 2601 | + } | |
| 2602 | + .temoignage-section ul li{ | |
| 2603 | + font-size: 16px; | |
| 2604 | + } | |
| 2605 | + .location-n-cat .location-n-cat:has(.search_keywords) { | |
| 2606 | + display: inline; | |
| 2607 | + } | |
| 2608 | + ul.job_types li label { | |
| 2609 | + display: flex; | |
| 2610 | + align-items: flex-start; | |
| 2611 | + } | |
| 2612 | + ul.job_types li input[type="checkbox"] { | |
| 2613 | + margin-top: 0.2em; | |
| 2614 | + margin-right: 0.5em; | |
| 2615 | + flex-shrink: 0; | |
| 2616 | + } | |
| 2617 | + ul.job_types li label::after { | |
| 2618 | + content: ""; | |
| 2619 | + display: block; | |
| 2620 | + } | |
| 2621 | + .liste-jobs-tout .job_filters .showing_jobs span{ | |
| 2622 | + display: inline-block; | |
| 2623 | + line-height: 20px; | |
| 2624 | + padding: 10px 0 1-0px 0; | |
| 2625 | + } | |
| 2626 | + .cat-hero-s-text { | |
| 2627 | + font-size: 20px; | |
| 2628 | + line-height:0; | |
| 2629 | + } | |
| 2630 | + .cat-hero-b-text { | |
| 2631 | + font-size: 25px; | |
| 2632 | + line-height: 30px; | |
| 2633 | + } | |
| 2634 | + .boxed.boxed--lg.border--round.bg--white:has(.cat-hero-text) { | |
| 2635 | + margin-top: 0; | |
| 2636 | + margin-bottom: 20px; | |
| 2637 | + min-width: 50vw; | |
| 2638 | + } | |
| 2639 | + .liste-jobs-tout h2 { | |
| 2640 | + font-size: 25px; | |
| 2641 | + padding-bottom:0px; | |
| 2642 | + } | |
| 2643 | + | |
| 2644 | + .wpcf7-checkbox .wpcf7-list-item { | |
| 2645 | + width: 100%; | |
| 2646 | + } | |
| 2647 | + .wpcf7-form-control.wpcf7-text, .wpcf7-form-control.wpcf7-email { | |
| 2648 | + width: 100%; | |
| 2649 | + } | |
| 2650 | + h1, .h1 { | |
| 2651 | + font-size: 2em; | |
| 2652 | + line-height: 1em; | |
| 2653 | + } | |
| 2654 | +} | |
| 2655 | + | |
| 2656 | +.single-job_listing .a2a_kit svg path { | |
| 2657 | + fill: #004071 !important; | |
| 2658 | +} | |
| 2659 | +.single-job_listing .a2a_kit .a2a_svg { | |
| 2660 | + background: none !important; | |
| 2661 | +} | |
| 2662 | +.single-job_listing .is-partagez { | |
| 2663 | + display: none; | |
| 2664 | +} | |
| 2665 | +.single-job_listing .a2a_kit::before { | |
| 2666 | + content: "Partager "; | |
| 2667 | + margin-right: 8px; | |
| 2668 | + font-size:18px; | |
| 2669 | + font-weight: bold; | |
| 2670 | + color: #8A898A; | |
| 2671 | +} | |
| 2672 | +.single-job_listing .a2a_kit { | |
| 2673 | + display: flex; | |
| 2674 | + justify-content: flex-end; | |
| 2675 | + align-items: center; | |
| 2676 | + margin-right: 100px; | |
| 2677 | +} | |
| 2678 | +.single-job_listing .a2a_button_twitter { | |
| 2679 | + display: none !important; | |
| 2680 | +} | |
| 2681 | +.statut-emploi-TP { | |
| 2682 | + display: none !important; | |
| 2683 | +} | |
| 2684 | +.col-md-11.col-sm-12.text-right.text-left-xs.text-left-sm { | |
| 2685 | + margin-top: -15px !important; | |
| 2686 | + margin-bottom:15px; | |
| 2687 | +} | |
| 2688 | + | |
| 2689 | +.job-info.job-card a:active, .job-info.job-card a:visited, .job-info.job-card a:focus{ | |
| 2690 | + background: transparent !important; | |
| 2691 | +} | |
| 2692 | + | |
| 2693 | +@media screen and (min-width: 600px) and (max-width: 800px) { | |
| 2694 | + .home-jobs .wpb_wrapper:has(.wpb_wrapper .toutes-offres) { | |
| 2695 | + min-height: 200px; | |
| 2696 | + } | |
| 2697 | + | |
| 2698 | + .toutes-offres { | |
| 2699 | + width: 50%; | |
| 2700 | + } | |
| 2701 | + | |
| 2702 | + .toutes-offres a { | |
| 2703 | + width: 50%; | |
| 2704 | + } | |
| 2705 | + .home-chezNous-section .chezNous-btns { | |
| 2706 | + bottom: 45%; | |
| 2707 | + left: 62%; | |
| 2708 | + } | |
| 2709 | + .home-chezNous-section .chezNous-btn { | |
| 2710 | + padding: 0px 2px; | |
| 2711 | + font-size: 25px; | |
| 2712 | + font-weight: 900; | |
| 2713 | + } | |
| 2714 | + .liste-jobs-tout .job_types { | |
| 2715 | + margin-top: 0px !important; | |
| 2716 | + background-color:#7cafde82 !important; | |
| 2717 | + } | |
| 2718 | + .liste-jobs-tout .job-listing-link span { | |
| 2719 | + display: block; | |
| 2720 | + margin: 10px 0; | |
| 2721 | + padding:0px; | |
| 2722 | + font-size:16px !important; | |
| 2723 | + line-height:20px; | |
| 2724 | + } | |
| 2725 | + .liste-jobs-tout ul.job_listings li.job_listing a.job-listing-link-button{ | |
| 2726 | + margin-top:5px; | |
| 2727 | + margin-bottom:2px; | |
| 2728 | + text-align: center; | |
| 2729 | + } | |
| 2730 | + .liste-jobs-tout .job-type-location{ | |
| 2731 | + display: block; | |
| 2732 | + } | |
| 2733 | + .liste-jobs-tout .job-listing-link span { | |
| 2734 | + display: flex; | |
| 2735 | + align-items: flex-start; | |
| 2736 | + gap: 6px; | |
| 2737 | + } | |
| 2738 | + .liste-jobs-tout .job-type-location .job-type{ | |
| 2739 | + margin-right:0px; | |
| 2740 | + } | |
| 2741 | + .liste-jobs-tout ul.job_listings li.job_listing a{ | |
| 2742 | + min-width: 100%; | |
| 2743 | + } | |
| 2744 | + .liste-jobs-tout .job-title h3{ | |
| 2745 | + max-width: 100% !important; | |
| 2746 | + font-size:25px; | |
| 2747 | + } | |
| 2748 | + .liste-jobs-tout .showing_jobs { | |
| 2749 | + margin-top:0px; | |
| 2750 | + } | |
| 2751 | + .wpcf7-checkbox .wpcf7-list-item { | |
| 2752 | + width: 50%; | |
| 2753 | + } | |
| 2754 | + .wpcf7-form-control.wpcf7-text, .wpcf7-form-control.wpcf7-email { | |
| 2755 | + width: 100%; | |
| 2756 | + } | |
| 2757 | +} | |
| 2758 | + | |
| 2759 | +@media (max-width: 768px) { | |
| 2760 | + .cat-hero-text{ | |
| 2761 | + padding-top:40vh !important; | |
| 2762 | + } | |
| 2763 | + .cat-hero-text{ | |
| 2764 | + margin-left: -30px !important; | |
| 2765 | + padding-top: 50px; | |
| 2766 | + } | |
| 2767 | + .right-section { | |
| 2768 | + margin:0px !important; | |
| 2769 | + } | |
| 2770 | + .col-sm-6:first-of-type{ | |
| 2771 | + border-left:0px !important; | |
| 2772 | + } | |
| 2773 | +} | |
| 2774 | + | |
| 2775 | +.elementor hr{ | |
| 2776 | + margin:25px 0px 10px 0px!important; | |
| 2777 | +} | |
| 2778 | +footer:not(.bg--primary):not(.bg--dark) a{ | |
| 2779 | + color:#fff; | |
| 2780 | +} | |
| 2781 | + | |
| 2782 | +.job-list { | |
| 2783 | + list-style: none; | |
| 2784 | + padding: 0; | |
| 2785 | + font-size: 30px; | |
| 2786 | + font-weight: 300; | |
| 2787 | + line-height: 1.6; | |
| 2788 | + } | |
| 2789 | +.right-section { | |
| 2790 | + display: flex; | |
| 2791 | + flex-direction: column; | |
| 2792 | + justify-content: flex-start; | |
| 2793 | + gap: 35px; | |
| 2794 | + margin-left:50px; | |
| 2795 | +} | |
| 2796 | +@media (max-width: 900px) { | |
| 2797 | + .container { | |
| 2798 | + flex-direction: column; | |
| 2799 | + gap: 40px; | |
| 2800 | + } | |
| 2801 | + .left-section, .right-section { | |
| 2802 | + max-width: 100%; | |
| 2803 | + } | |
| 2804 | +} | |
| 2805 | + | |
| 2806 | +.menu-horizontal > .dropdown > .dropdown__trigger::after { | |
| 2807 | + margin-left: 4px; | |
| 2808 | + content: ""; | |
| 2809 | + display: inline-block; | |
| 2810 | + width: 20px; | |
| 2811 | + height: 20px; | |
| 2812 | + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230066b3'%3E%3Cpath d='M12 13.172l4.95-4.95 1.414 1.414L12 16 5.636 9.636l1.414-1.414L12 13.172z'/%3E%3Cpath d='M12 19.172l4.95-4.95 1.414 1.414L12 22 5.636 15.636l1.414-1.414L12 19.172z'/%3E%3C/svg%3E"); | |
| 2813 | + background-size: contain; | |
| 2814 | + background-repeat: no-repeat; | |
| 2815 | +} | |
| 2816 | +.container{ | |
| 2817 | + width:90vw; | |
| 2818 | + margin-left:5vw; | |
| 2819 | +} | |
| 2820 | +.col-sm-6:first-of-type{ | |
| 2821 | + border-right:1px solid white; | |
| 2822 | + | |
| 2823 | +} | |
| 2824 | +@media (min-width: 900px){ | |
| 2825 | + .col-sm-6:first-of-type{ | |
| 2826 | + width:60%; | |
| 2827 | + padding-bottom:100px; | |
| 2828 | + } | |
| 2829 | +} | |
| 2830 | +@media (min-width: 900px) { | |
| 2831 | + .col-sm-6 { | |
| 2832 | + width:40%; | |
| 2833 | + } | |
| 2834 | +} | |
| 2835 | + | |
| 2836 | +.left-section .link a { | |
| 2837 | + line-height: 1.2em; | |
| 2838 | + display: inline-block; | |
| 2839 | +} | |
| 2840 | +.footer-s .link{ | |
| 2841 | + font-size: 20px ; | |
| 2842 | +} | |
| 2843 | +.left-section { | |
| 2844 | + line-height: 2.2em; | |
| 2845 | + display: inline-block; | |
| 2846 | +} | |
| 2847 | + | |
| 2848 | + | |
| 2849 | +.nav-btn { | |
| 2850 | + border: none; | |
| 2851 | +} | |
| 2852 | +@media (max-width: 800px){ | |
| 2853 | + .left-section a { | |
| 2854 | + font-size:15px; | |
| 2855 | + } | |
| 2856 | + .footer-s .link{ | |
| 2857 | + font-size: 15px ; | |
| 2858 | + } | |
| 2859 | + .right-section { | |
| 2860 | + gap:0;} | |
| 2861 | + | |
| 2862 | + .footer-t { | |
| 2863 | + font-size:20px ; | |
| 2864 | + white-space:nowrap; | |
| 2865 | + } | |
| 2866 | + .col-sm-6:first-of-type{ | |
| 2867 | + border:none; | |
| 2868 | + } | |
| 2869 | +} | |
| 2870 | + | |
| 2871 | +@media (max-width: 767px){ | |
| 2872 | +.col-sm-6:first-of-type{ | |
| 2873 | + border:none; | |
| 2874 | + } | |
| 2875 | +} | |
| 2876 | + | |
| 2877 | +@media screen and (min-width: 1024px) and (max-width: 1700px) { | |
| 2878 | + .slider{ | |
| 2879 | + width:500px; | |
| 2880 | + height:400px; | |
| 2881 | + } | |
| 2882 | +} | |
| 2883 | +@media (min-width: 600px) and (max-width: 1300px) { | |
| 2884 | + .article__title.text-center h1 { | |
| 2885 | + padding-bottom: 240px; | |
| 2886 | + font-size: 30px; | |
| 2887 | + } | |
| 2888 | +} | |
| 2889 | +</style> | |
| 2890 | + <!-- Fonts Plugin CSS - https://fontsplugin.com/ --> | |
| 2891 | + <style> | |
| 2892 | + /* Cached: August 18, 2026 at 1:23am */ | |
| 2893 | +/* cyrillic-ext */ | |
| 2894 | +@font-face { | |
| 2895 | + font-family: 'Montserrat'; | |
| 2896 | + font-style: italic; | |
| 2897 | + font-weight: 100; | |
| 2898 | + font-display: swap; | |
| 2899 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2900 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 2901 | +} | |
| 2902 | +/* cyrillic */ | |
| 2903 | +@font-face { | |
| 2904 | + font-family: 'Montserrat'; | |
| 2905 | + font-style: italic; | |
| 2906 | + font-weight: 100; | |
| 2907 | + font-display: swap; | |
| 2908 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2909 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 2910 | +} | |
| 2911 | +/* vietnamese */ | |
| 2912 | +@font-face { | |
| 2913 | + font-family: 'Montserrat'; | |
| 2914 | + font-style: italic; | |
| 2915 | + font-weight: 100; | |
| 2916 | + font-display: swap; | |
| 2917 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2918 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 2919 | +} | |
| 2920 | +/* latin-ext */ | |
| 2921 | +@font-face { | |
| 2922 | + font-family: 'Montserrat'; | |
| 2923 | + font-style: italic; | |
| 2924 | + font-weight: 100; | |
| 2925 | + font-display: swap; | |
| 2926 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2927 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 2928 | +} | |
| 2929 | +/* latin */ | |
| 2930 | +@font-face { | |
| 2931 | + font-family: 'Montserrat'; | |
| 2932 | + font-style: italic; | |
| 2933 | + font-weight: 100; | |
| 2934 | + font-display: swap; | |
| 2935 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 2936 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 2937 | +} | |
| 2938 | +/* cyrillic-ext */ | |
| 2939 | +@font-face { | |
| 2940 | + font-family: 'Montserrat'; | |
| 2941 | + font-style: italic; | |
| 2942 | + font-weight: 200; | |
| 2943 | + font-display: swap; | |
| 2944 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2945 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 2946 | +} | |
| 2947 | +/* cyrillic */ | |
| 2948 | +@font-face { | |
| 2949 | + font-family: 'Montserrat'; | |
| 2950 | + font-style: italic; | |
| 2951 | + font-weight: 200; | |
| 2952 | + font-display: swap; | |
| 2953 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2954 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 2955 | +} | |
| 2956 | +/* vietnamese */ | |
| 2957 | +@font-face { | |
| 2958 | + font-family: 'Montserrat'; | |
| 2959 | + font-style: italic; | |
| 2960 | + font-weight: 200; | |
| 2961 | + font-display: swap; | |
| 2962 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2963 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 2964 | +} | |
| 2965 | +/* latin-ext */ | |
| 2966 | +@font-face { | |
| 2967 | + font-family: 'Montserrat'; | |
| 2968 | + font-style: italic; | |
| 2969 | + font-weight: 200; | |
| 2970 | + font-display: swap; | |
| 2971 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2972 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 2973 | +} | |
| 2974 | +/* latin */ | |
| 2975 | +@font-face { | |
| 2976 | + font-family: 'Montserrat'; | |
| 2977 | + font-style: italic; | |
| 2978 | + font-weight: 200; | |
| 2979 | + font-display: swap; | |
| 2980 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 2981 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 2982 | +} | |
| 2983 | +/* cyrillic-ext */ | |
| 2984 | +@font-face { | |
| 2985 | + font-family: 'Montserrat'; | |
| 2986 | + font-style: italic; | |
| 2987 | + font-weight: 300; | |
| 2988 | + font-display: swap; | |
| 2989 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2990 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 2991 | +} | |
| 2992 | +/* cyrillic */ | |
| 2993 | +@font-face { | |
| 2994 | + font-family: 'Montserrat'; | |
| 2995 | + font-style: italic; | |
| 2996 | + font-weight: 300; | |
| 2997 | + font-display: swap; | |
| 2998 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2999 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3000 | +} | |
| 3001 | +/* vietnamese */ | |
| 3002 | +@font-face { | |
| 3003 | + font-family: 'Montserrat'; | |
| 3004 | + font-style: italic; | |
| 3005 | + font-weight: 300; | |
| 3006 | + font-display: swap; | |
| 3007 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3008 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3009 | +} | |
| 3010 | +/* latin-ext */ | |
| 3011 | +@font-face { | |
| 3012 | + font-family: 'Montserrat'; | |
| 3013 | + font-style: italic; | |
| 3014 | + font-weight: 300; | |
| 3015 | + font-display: swap; | |
| 3016 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3017 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3018 | +} | |
| 3019 | +/* latin */ | |
| 3020 | +@font-face { | |
| 3021 | + font-family: 'Montserrat'; | |
| 3022 | + font-style: italic; | |
| 3023 | + font-weight: 300; | |
| 3024 | + font-display: swap; | |
| 3025 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3026 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3027 | +} | |
| 3028 | +/* cyrillic-ext */ | |
| 3029 | +@font-face { | |
| 3030 | + font-family: 'Montserrat'; | |
| 3031 | + font-style: italic; | |
| 3032 | + font-weight: 400; | |
| 3033 | + font-display: swap; | |
| 3034 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3035 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3036 | +} | |
| 3037 | +/* cyrillic */ | |
| 3038 | +@font-face { | |
| 3039 | + font-family: 'Montserrat'; | |
| 3040 | + font-style: italic; | |
| 3041 | + font-weight: 400; | |
| 3042 | + font-display: swap; | |
| 3043 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3044 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3045 | +} | |
| 3046 | +/* vietnamese */ | |
| 3047 | +@font-face { | |
| 3048 | + font-family: 'Montserrat'; | |
| 3049 | + font-style: italic; | |
| 3050 | + font-weight: 400; | |
| 3051 | + font-display: swap; | |
| 3052 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3053 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3054 | +} | |
| 3055 | +/* latin-ext */ | |
| 3056 | +@font-face { | |
| 3057 | + font-family: 'Montserrat'; | |
| 3058 | + font-style: italic; | |
| 3059 | + font-weight: 400; | |
| 3060 | + font-display: swap; | |
| 3061 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3062 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3063 | +} | |
| 3064 | +/* latin */ | |
| 3065 | +@font-face { | |
| 3066 | + font-family: 'Montserrat'; | |
| 3067 | + font-style: italic; | |
| 3068 | + font-weight: 400; | |
| 3069 | + font-display: swap; | |
| 3070 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3071 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3072 | +} | |
| 3073 | +/* cyrillic-ext */ | |
| 3074 | +@font-face { | |
| 3075 | + font-family: 'Montserrat'; | |
| 3076 | + font-style: italic; | |
| 3077 | + font-weight: 500; | |
| 3078 | + font-display: swap; | |
| 3079 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3080 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3081 | +} | |
| 3082 | +/* cyrillic */ | |
| 3083 | +@font-face { | |
| 3084 | + font-family: 'Montserrat'; | |
| 3085 | + font-style: italic; | |
| 3086 | + font-weight: 500; | |
| 3087 | + font-display: swap; | |
| 3088 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3089 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3090 | +} | |
| 3091 | +/* vietnamese */ | |
| 3092 | +@font-face { | |
| 3093 | + font-family: 'Montserrat'; | |
| 3094 | + font-style: italic; | |
| 3095 | + font-weight: 500; | |
| 3096 | + font-display: swap; | |
| 3097 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3098 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3099 | +} | |
| 3100 | +/* latin-ext */ | |
| 3101 | +@font-face { | |
| 3102 | + font-family: 'Montserrat'; | |
| 3103 | + font-style: italic; | |
| 3104 | + font-weight: 500; | |
| 3105 | + font-display: swap; | |
| 3106 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3107 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3108 | +} | |
| 3109 | +/* latin */ | |
| 3110 | +@font-face { | |
| 3111 | + font-family: 'Montserrat'; | |
| 3112 | + font-style: italic; | |
| 3113 | + font-weight: 500; | |
| 3114 | + font-display: swap; | |
| 3115 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3116 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3117 | +} | |
| 3118 | +/* cyrillic-ext */ | |
| 3119 | +@font-face { | |
| 3120 | + font-family: 'Montserrat'; | |
| 3121 | + font-style: italic; | |
| 3122 | + font-weight: 600; | |
| 3123 | + font-display: swap; | |
| 3124 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3125 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3126 | +} | |
| 3127 | +/* cyrillic */ | |
| 3128 | +@font-face { | |
| 3129 | + font-family: 'Montserrat'; | |
| 3130 | + font-style: italic; | |
| 3131 | + font-weight: 600; | |
| 3132 | + font-display: swap; | |
| 3133 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3134 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3135 | +} | |
| 3136 | +/* vietnamese */ | |
| 3137 | +@font-face { | |
| 3138 | + font-family: 'Montserrat'; | |
| 3139 | + font-style: italic; | |
| 3140 | + font-weight: 600; | |
| 3141 | + font-display: swap; | |
| 3142 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3143 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3144 | +} | |
| 3145 | +/* latin-ext */ | |
| 3146 | +@font-face { | |
| 3147 | + font-family: 'Montserrat'; | |
| 3148 | + font-style: italic; | |
| 3149 | + font-weight: 600; | |
| 3150 | + font-display: swap; | |
| 3151 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3152 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3153 | +} | |
| 3154 | +/* latin */ | |
| 3155 | +@font-face { | |
| 3156 | + font-family: 'Montserrat'; | |
| 3157 | + font-style: italic; | |
| 3158 | + font-weight: 600; | |
| 3159 | + font-display: swap; | |
| 3160 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3161 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3162 | +} | |
| 3163 | +/* cyrillic-ext */ | |
| 3164 | +@font-face { | |
| 3165 | + font-family: 'Montserrat'; | |
| 3166 | + font-style: italic; | |
| 3167 | + font-weight: 700; | |
| 3168 | + font-display: swap; | |
| 3169 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3170 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3171 | +} | |
| 3172 | +/* cyrillic */ | |
| 3173 | +@font-face { | |
| 3174 | + font-family: 'Montserrat'; | |
| 3175 | + font-style: italic; | |
| 3176 | + font-weight: 700; | |
| 3177 | + font-display: swap; | |
| 3178 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3179 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3180 | +} | |
| 3181 | +/* vietnamese */ | |
| 3182 | +@font-face { | |
| 3183 | + font-family: 'Montserrat'; | |
| 3184 | + font-style: italic; | |
| 3185 | + font-weight: 700; | |
| 3186 | + font-display: swap; | |
| 3187 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3188 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3189 | +} | |
| 3190 | +/* latin-ext */ | |
| 3191 | +@font-face { | |
| 3192 | + font-family: 'Montserrat'; | |
| 3193 | + font-style: italic; | |
| 3194 | + font-weight: 700; | |
| 3195 | + font-display: swap; | |
| 3196 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3197 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3198 | +} | |
| 3199 | +/* latin */ | |
| 3200 | +@font-face { | |
| 3201 | + font-family: 'Montserrat'; | |
| 3202 | + font-style: italic; | |
| 3203 | + font-weight: 700; | |
| 3204 | + font-display: swap; | |
| 3205 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3206 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3207 | +} | |
| 3208 | +/* cyrillic-ext */ | |
| 3209 | +@font-face { | |
| 3210 | + font-family: 'Montserrat'; | |
| 3211 | + font-style: italic; | |
| 3212 | + font-weight: 800; | |
| 3213 | + font-display: swap; | |
| 3214 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3215 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3216 | +} | |
| 3217 | +/* cyrillic */ | |
| 3218 | +@font-face { | |
| 3219 | + font-family: 'Montserrat'; | |
| 3220 | + font-style: italic; | |
| 3221 | + font-weight: 800; | |
| 3222 | + font-display: swap; | |
| 3223 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3224 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3225 | +} | |
| 3226 | +/* vietnamese */ | |
| 3227 | +@font-face { | |
| 3228 | + font-family: 'Montserrat'; | |
| 3229 | + font-style: italic; | |
| 3230 | + font-weight: 800; | |
| 3231 | + font-display: swap; | |
| 3232 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3233 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3234 | +} | |
| 3235 | +/* latin-ext */ | |
| 3236 | +@font-face { | |
| 3237 | + font-family: 'Montserrat'; | |
| 3238 | + font-style: italic; | |
| 3239 | + font-weight: 800; | |
| 3240 | + font-display: swap; | |
| 3241 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3242 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3243 | +} | |
| 3244 | +/* latin */ | |
| 3245 | +@font-face { | |
| 3246 | + font-family: 'Montserrat'; | |
| 3247 | + font-style: italic; | |
| 3248 | + font-weight: 800; | |
| 3249 | + font-display: swap; | |
| 3250 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3251 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3252 | +} | |
| 3253 | +/* cyrillic-ext */ | |
| 3254 | +@font-face { | |
| 3255 | + font-family: 'Montserrat'; | |
| 3256 | + font-style: italic; | |
| 3257 | + font-weight: 900; | |
| 3258 | + font-display: swap; | |
| 3259 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3260 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3261 | +} | |
| 3262 | +/* cyrillic */ | |
| 3263 | +@font-face { | |
| 3264 | + font-family: 'Montserrat'; | |
| 3265 | + font-style: italic; | |
| 3266 | + font-weight: 900; | |
| 3267 | + font-display: swap; | |
| 3268 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3269 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3270 | +} | |
| 3271 | +/* vietnamese */ | |
| 3272 | +@font-face { | |
| 3273 | + font-family: 'Montserrat'; | |
| 3274 | + font-style: italic; | |
| 3275 | + font-weight: 900; | |
| 3276 | + font-display: swap; | |
| 3277 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3278 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3279 | +} | |
| 3280 | +/* latin-ext */ | |
| 3281 | +@font-face { | |
| 3282 | + font-family: 'Montserrat'; | |
| 3283 | + font-style: italic; | |
| 3284 | + font-weight: 900; | |
| 3285 | + font-display: swap; | |
| 3286 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3287 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3288 | +} | |
| 3289 | +/* latin */ | |
| 3290 | +@font-face { | |
| 3291 | + font-family: 'Montserrat'; | |
| 3292 | + font-style: italic; | |
| 3293 | + font-weight: 900; | |
| 3294 | + font-display: swap; | |
| 3295 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3296 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3297 | +} | |
| 3298 | +/* cyrillic-ext */ | |
| 3299 | +@font-face { | |
| 3300 | + font-family: 'Montserrat'; | |
| 3301 | + font-style: normal; | |
| 3302 | + font-weight: 100; | |
| 3303 | + font-display: swap; | |
| 3304 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3305 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3306 | +} | |
| 3307 | +/* cyrillic */ | |
| 3308 | +@font-face { | |
| 3309 | + font-family: 'Montserrat'; | |
| 3310 | + font-style: normal; | |
| 3311 | + font-weight: 100; | |
| 3312 | + font-display: swap; | |
| 3313 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3314 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3315 | +} | |
| 3316 | +/* vietnamese */ | |
| 3317 | +@font-face { | |
| 3318 | + font-family: 'Montserrat'; | |
| 3319 | + font-style: normal; | |
| 3320 | + font-weight: 100; | |
| 3321 | + font-display: swap; | |
| 3322 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3323 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3324 | +} | |
| 3325 | +/* latin-ext */ | |
| 3326 | +@font-face { | |
| 3327 | + font-family: 'Montserrat'; | |
| 3328 | + font-style: normal; | |
| 3329 | + font-weight: 100; | |
| 3330 | + font-display: swap; | |
| 3331 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3332 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3333 | +} | |
| 3334 | +/* latin */ | |
| 3335 | +@font-face { | |
| 3336 | + font-family: 'Montserrat'; | |
| 3337 | + font-style: normal; | |
| 3338 | + font-weight: 100; | |
| 3339 | + font-display: swap; | |
| 3340 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3341 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3342 | +} | |
| 3343 | +/* cyrillic-ext */ | |
| 3344 | +@font-face { | |
| 3345 | + font-family: 'Montserrat'; | |
| 3346 | + font-style: normal; | |
| 3347 | + font-weight: 200; | |
| 3348 | + font-display: swap; | |
| 3349 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3350 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3351 | +} | |
| 3352 | +/* cyrillic */ | |
| 3353 | +@font-face { | |
| 3354 | + font-family: 'Montserrat'; | |
| 3355 | + font-style: normal; | |
| 3356 | + font-weight: 200; | |
| 3357 | + font-display: swap; | |
| 3358 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3359 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3360 | +} | |
| 3361 | +/* vietnamese */ | |
| 3362 | +@font-face { | |
| 3363 | + font-family: 'Montserrat'; | |
| 3364 | + font-style: normal; | |
| 3365 | + font-weight: 200; | |
| 3366 | + font-display: swap; | |
| 3367 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3368 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3369 | +} | |
| 3370 | +/* latin-ext */ | |
| 3371 | +@font-face { | |
| 3372 | + font-family: 'Montserrat'; | |
| 3373 | + font-style: normal; | |
| 3374 | + font-weight: 200; | |
| 3375 | + font-display: swap; | |
| 3376 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3377 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3378 | +} | |
| 3379 | +/* latin */ | |
| 3380 | +@font-face { | |
| 3381 | + font-family: 'Montserrat'; | |
| 3382 | + font-style: normal; | |
| 3383 | + font-weight: 200; | |
| 3384 | + font-display: swap; | |
| 3385 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3386 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3387 | +} | |
| 3388 | +/* cyrillic-ext */ | |
| 3389 | +@font-face { | |
| 3390 | + font-family: 'Montserrat'; | |
| 3391 | + font-style: normal; | |
| 3392 | + font-weight: 300; | |
| 3393 | + font-display: swap; | |
| 3394 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3395 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3396 | +} | |
| 3397 | +/* cyrillic */ | |
| 3398 | +@font-face { | |
| 3399 | + font-family: 'Montserrat'; | |
| 3400 | + font-style: normal; | |
| 3401 | + font-weight: 300; | |
| 3402 | + font-display: swap; | |
| 3403 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3404 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3405 | +} | |
| 3406 | +/* vietnamese */ | |
| 3407 | +@font-face { | |
| 3408 | + font-family: 'Montserrat'; | |
| 3409 | + font-style: normal; | |
| 3410 | + font-weight: 300; | |
| 3411 | + font-display: swap; | |
| 3412 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3413 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3414 | +} | |
| 3415 | +/* latin-ext */ | |
| 3416 | +@font-face { | |
| 3417 | + font-family: 'Montserrat'; | |
| 3418 | + font-style: normal; | |
| 3419 | + font-weight: 300; | |
| 3420 | + font-display: swap; | |
| 3421 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3422 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3423 | +} | |
| 3424 | +/* latin */ | |
| 3425 | +@font-face { | |
| 3426 | + font-family: 'Montserrat'; | |
| 3427 | + font-style: normal; | |
| 3428 | + font-weight: 300; | |
| 3429 | + font-display: swap; | |
| 3430 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3431 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3432 | +} | |
| 3433 | +/* cyrillic-ext */ | |
| 3434 | +@font-face { | |
| 3435 | + font-family: 'Montserrat'; | |
| 3436 | + font-style: normal; | |
| 3437 | + font-weight: 400; | |
| 3438 | + font-display: swap; | |
| 3439 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3440 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3441 | +} | |
| 3442 | +/* cyrillic */ | |
| 3443 | +@font-face { | |
| 3444 | + font-family: 'Montserrat'; | |
| 3445 | + font-style: normal; | |
| 3446 | + font-weight: 400; | |
| 3447 | + font-display: swap; | |
| 3448 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3449 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3450 | +} | |
| 3451 | +/* vietnamese */ | |
| 3452 | +@font-face { | |
| 3453 | + font-family: 'Montserrat'; | |
| 3454 | + font-style: normal; | |
| 3455 | + font-weight: 400; | |
| 3456 | + font-display: swap; | |
| 3457 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3458 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3459 | +} | |
| 3460 | +/* latin-ext */ | |
| 3461 | +@font-face { | |
| 3462 | + font-family: 'Montserrat'; | |
| 3463 | + font-style: normal; | |
| 3464 | + font-weight: 400; | |
| 3465 | + font-display: swap; | |
| 3466 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3467 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3468 | +} | |
| 3469 | +/* latin */ | |
| 3470 | +@font-face { | |
| 3471 | + font-family: 'Montserrat'; | |
| 3472 | + font-style: normal; | |
| 3473 | + font-weight: 400; | |
| 3474 | + font-display: swap; | |
| 3475 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3476 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3477 | +} | |
| 3478 | +/* cyrillic-ext */ | |
| 3479 | +@font-face { | |
| 3480 | + font-family: 'Montserrat'; | |
| 3481 | + font-style: normal; | |
| 3482 | + font-weight: 500; | |
| 3483 | + font-display: swap; | |
| 3484 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3485 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3486 | +} | |
| 3487 | +/* cyrillic */ | |
| 3488 | +@font-face { | |
| 3489 | + font-family: 'Montserrat'; | |
| 3490 | + font-style: normal; | |
| 3491 | + font-weight: 500; | |
| 3492 | + font-display: swap; | |
| 3493 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3494 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3495 | +} | |
| 3496 | +/* vietnamese */ | |
| 3497 | +@font-face { | |
| 3498 | + font-family: 'Montserrat'; | |
| 3499 | + font-style: normal; | |
| 3500 | + font-weight: 500; | |
| 3501 | + font-display: swap; | |
| 3502 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3503 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3504 | +} | |
| 3505 | +/* latin-ext */ | |
| 3506 | +@font-face { | |
| 3507 | + font-family: 'Montserrat'; | |
| 3508 | + font-style: normal; | |
| 3509 | + font-weight: 500; | |
| 3510 | + font-display: swap; | |
| 3511 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3512 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3513 | +} | |
| 3514 | +/* latin */ | |
| 3515 | +@font-face { | |
| 3516 | + font-family: 'Montserrat'; | |
| 3517 | + font-style: normal; | |
| 3518 | + font-weight: 500; | |
| 3519 | + font-display: swap; | |
| 3520 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3521 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3522 | +} | |
| 3523 | +/* cyrillic-ext */ | |
| 3524 | +@font-face { | |
| 3525 | + font-family: 'Montserrat'; | |
| 3526 | + font-style: normal; | |
| 3527 | + font-weight: 600; | |
| 3528 | + font-display: swap; | |
| 3529 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3530 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3531 | +} | |
| 3532 | +/* cyrillic */ | |
| 3533 | +@font-face { | |
| 3534 | + font-family: 'Montserrat'; | |
| 3535 | + font-style: normal; | |
| 3536 | + font-weight: 600; | |
| 3537 | + font-display: swap; | |
| 3538 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3539 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3540 | +} | |
| 3541 | +/* vietnamese */ | |
| 3542 | +@font-face { | |
| 3543 | + font-family: 'Montserrat'; | |
| 3544 | + font-style: normal; | |
| 3545 | + font-weight: 600; | |
| 3546 | + font-display: swap; | |
| 3547 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3548 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3549 | +} | |
| 3550 | +/* latin-ext */ | |
| 3551 | +@font-face { | |
| 3552 | + font-family: 'Montserrat'; | |
| 3553 | + font-style: normal; | |
| 3554 | + font-weight: 600; | |
| 3555 | + font-display: swap; | |
| 3556 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3557 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3558 | +} | |
| 3559 | +/* latin */ | |
| 3560 | +@font-face { | |
| 3561 | + font-family: 'Montserrat'; | |
| 3562 | + font-style: normal; | |
| 3563 | + font-weight: 600; | |
| 3564 | + font-display: swap; | |
| 3565 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3566 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3567 | +} | |
| 3568 | +/* cyrillic-ext */ | |
| 3569 | +@font-face { | |
| 3570 | + font-family: 'Montserrat'; | |
| 3571 | + font-style: normal; | |
| 3572 | + font-weight: 700; | |
| 3573 | + font-display: swap; | |
| 3574 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3575 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3576 | +} | |
| 3577 | +/* cyrillic */ | |
| 3578 | +@font-face { | |
| 3579 | + font-family: 'Montserrat'; | |
| 3580 | + font-style: normal; | |
| 3581 | + font-weight: 700; | |
| 3582 | + font-display: swap; | |
| 3583 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3584 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3585 | +} | |
| 3586 | +/* vietnamese */ | |
| 3587 | +@font-face { | |
| 3588 | + font-family: 'Montserrat'; | |
| 3589 | + font-style: normal; | |
| 3590 | + font-weight: 700; | |
| 3591 | + font-display: swap; | |
| 3592 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3593 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3594 | +} | |
| 3595 | +/* latin-ext */ | |
| 3596 | +@font-face { | |
| 3597 | + font-family: 'Montserrat'; | |
| 3598 | + font-style: normal; | |
| 3599 | + font-weight: 700; | |
| 3600 | + font-display: swap; | |
| 3601 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3602 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3603 | +} | |
| 3604 | +/* latin */ | |
| 3605 | +@font-face { | |
| 3606 | + font-family: 'Montserrat'; | |
| 3607 | + font-style: normal; | |
| 3608 | + font-weight: 700; | |
| 3609 | + font-display: swap; | |
| 3610 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3611 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3612 | +} | |
| 3613 | +/* cyrillic-ext */ | |
| 3614 | +@font-face { | |
| 3615 | + font-family: 'Montserrat'; | |
| 3616 | + font-style: normal; | |
| 3617 | + font-weight: 800; | |
| 3618 | + font-display: swap; | |
| 3619 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3620 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3621 | +} | |
| 3622 | +/* cyrillic */ | |
| 3623 | +@font-face { | |
| 3624 | + font-family: 'Montserrat'; | |
| 3625 | + font-style: normal; | |
| 3626 | + font-weight: 800; | |
| 3627 | + font-display: swap; | |
| 3628 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3629 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3630 | +} | |
| 3631 | +/* vietnamese */ | |
| 3632 | +@font-face { | |
| 3633 | + font-family: 'Montserrat'; | |
| 3634 | + font-style: normal; | |
| 3635 | + font-weight: 800; | |
| 3636 | + font-display: swap; | |
| 3637 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3638 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3639 | +} | |
| 3640 | +/* latin-ext */ | |
| 3641 | +@font-face { | |
| 3642 | + font-family: 'Montserrat'; | |
| 3643 | + font-style: normal; | |
| 3644 | + font-weight: 800; | |
| 3645 | + font-display: swap; | |
| 3646 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3647 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3648 | +} | |
| 3649 | +/* latin */ | |
| 3650 | +@font-face { | |
| 3651 | + font-family: 'Montserrat'; | |
| 3652 | + font-style: normal; | |
| 3653 | + font-weight: 800; | |
| 3654 | + font-display: swap; | |
| 3655 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3656 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3657 | +} | |
| 3658 | +/* cyrillic-ext */ | |
| 3659 | +@font-face { | |
| 3660 | + font-family: 'Montserrat'; | |
| 3661 | + font-style: normal; | |
| 3662 | + font-weight: 900; | |
| 3663 | + font-display: swap; | |
| 3664 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3665 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3666 | +} | |
| 3667 | +/* cyrillic */ | |
| 3668 | +@font-face { | |
| 3669 | + font-family: 'Montserrat'; | |
| 3670 | + font-style: normal; | |
| 3671 | + font-weight: 900; | |
| 3672 | + font-display: swap; | |
| 3673 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3674 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3675 | +} | |
| 3676 | +/* vietnamese */ | |
| 3677 | +@font-face { | |
| 3678 | + font-family: 'Montserrat'; | |
| 3679 | + font-style: normal; | |
| 3680 | + font-weight: 900; | |
| 3681 | + font-display: swap; | |
| 3682 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3683 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3684 | +} | |
| 3685 | +/* latin-ext */ | |
| 3686 | +@font-face { | |
| 3687 | + font-family: 'Montserrat'; | |
| 3688 | + font-style: normal; | |
| 3689 | + font-weight: 900; | |
| 3690 | + font-display: swap; | |
| 3691 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3692 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3693 | +} | |
| 3694 | +/* latin */ | |
| 3695 | +@font-face { | |
| 3696 | + font-family: 'Montserrat'; | |
| 3697 | + font-style: normal; | |
| 3698 | + font-weight: 900; | |
| 3699 | + font-display: swap; | |
| 3700 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3701 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3702 | +} | |
| 3703 | + | |
| 3704 | +:root { | |
| 3705 | +--font-base: Montserrat; | |
| 3706 | +--font-headings: Montserrat; | |
| 3707 | +--font-input: Montserrat; | |
| 3708 | +} | |
| 3709 | +body, #content, .entry-content, .post-content, .page-content, .post-excerpt, .entry-summary, .entry-excerpt, .widget-area, .widget, .sidebar, #sidebar, footer, .footer, #footer, .site-footer { | |
| 3710 | +font-family: "Montserrat"; | |
| 3711 | + } | |
| 3712 | +#site-title, .site-title, #site-title a, .site-title a, .entry-title, .entry-title a, h1, h2, h3, h4, h5, h6, .widget-title, .elementor-heading-title { | |
| 3713 | +font-family: "Montserrat"; | |
| 3714 | +font-weight: 500; | |
| 3715 | + } | |
| 3716 | +button, .button, input, select, textarea, .wp-block-button, .wp-block-button__link { | |
| 3717 | +font-family: "Montserrat"; | |
| 3718 | +font-weight: 500; | |
| 3719 | + } | |
| 3720 | +#site-title, .site-title, #site-title a, .site-title a, #site-logo, #site-logo a, #logo, #logo a, .logo, .logo a, .wp-block-site-title, .wp-block-site-title a { | |
| 3721 | +font-family: "Montserrat"; | |
| 3722 | + } | |
| 3723 | +#site-description, .site-description, #site-tagline, .site-tagline, .wp-block-site-tagline { | |
| 3724 | +font-family: "Montserrat"; | |
| 3725 | + } | |
| 3726 | +.menu, .page_item a, .menu-item a, .wp-block-navigation, .wp-block-navigation-item__content { | |
| 3727 | +font-family: "Montserrat"; | |
| 3728 | + } | |
| 3729 | +.entry-content, .entry-content p, .post-content, .page-content, .post-excerpt, .entry-summary, .entry-excerpt, .excerpt, .excerpt p, .type-post p, .type-page p, .wp-block-post-content, .wp-block-post-excerpt, .elementor, .elementor p { | |
| 3730 | +font-family: "Montserrat"; | |
| 3731 | + } | |
| 3732 | +.wp-block-post-title, .wp-block-post-title a, .entry-title, .entry-title a, .post-title, .post-title a, .page-title, .entry-content h1, #content h1, .type-post h1, .type-page h1, .elementor h1 { | |
| 3733 | +font-family: "Montserrat"; | |
| 3734 | +font-weight: 700; | |
| 3735 | + } | |
| 3736 | +.entry-content h2, .post-content h2, .page-content h2, #content h2, .type-post h2, .type-page h2, .elementor h2 { | |
| 3737 | +font-family: "Montserrat"; | |
| 3738 | +font-weight: 800; | |
| 3739 | + } | |
| 3740 | +.entry-content h3, .post-content h3, .page-content h3, #content h3, .type-post h3, .type-page h3, .elementor h3 { | |
| 3741 | +font-family: "Montserrat"; | |
| 3742 | + } | |
| 3743 | +.entry-content h4, .post-content h4, .page-content h4, #content h4, .type-post h4, .type-page h4, .elementor h4 { | |
| 3744 | +font-family: "Montserrat"; | |
| 3745 | + } | |
| 3746 | +.entry-content h5, .post-content h5, .page-content h5, #content h5, .type-post h5, .type-page h5, .elementor h5 { | |
| 3747 | +font-family: "Montserrat"; | |
| 3748 | + } | |
| 3749 | +.entry-content h6, .post-content h6, .page-content h6, #content h6, .type-post h6, .type-page h6, .elementor h6 { | |
| 3750 | +font-family: "Montserrat"; | |
| 3751 | + } | |
| 3752 | +ul, ol, ul li, ol li, li { | |
| 3753 | +font-family: "Montserrat"; | |
| 3754 | + } | |
| 3755 | +blockquote, .wp-block-quote, blockquote p, .wp-block-quote p { | |
| 3756 | +font-family: "Montserrat"; | |
| 3757 | + } | |
| 3758 | +.widget-title, .widget-area h1, .widget-area h2, .widget-area h3, .widget-area h4, .widget-area h5, .widget-area h6, #secondary h1, #secondary h2, #secondary h3, #secondary h4, #secondary h5, #secondary h6 { | |
| 3759 | +font-family: "Montserrat"; | |
| 3760 | + } | |
| 3761 | +.widget-area, .widget, .sidebar, #sidebar, #secondary { | |
| 3762 | +font-family: "Montserrat"; | |
| 3763 | + } | |
| 3764 | +footer h1, footer h2, footer h3, footer h4, footer h5, footer h6, .footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6, #footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6 { | |
| 3765 | +font-family: "Montserrat"; | |
| 3766 | + } | |
| 3767 | +footer, #footer, .footer, .site-footer { | |
| 3768 | +font-family: "Montserrat"; | |
| 3769 | + } | |
| 3770 | + </style> | |
| 3771 | + <!-- Fonts Plugin CSS --> | |
| 3772 | + <noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript> | |
| 3773 | +<script> | |
| 3774 | +document.addEventListener( 'wpcf7mailsent', function( event ) { | |
| 3775 | + ga('send', 'event', 'Contact Form', 'submit'); | |
| 3776 | +}, false ); | |
| 3777 | +</script> | |
| 3778 | + | |
| 3779 | + | |
| 3780 | +</head> | |
| 3781 | + | |
| 3782 | +<body class="wp-singular job_listing-template-default single single-job_listing postid-55395 wp-theme-stack wp-child-theme-stack-child stack--rounded normal-layout dropdowns--hover active-tabs active-accordions parallax-enable-mobile stack-child wpb-js-composer js-comp-ver-8.7.3 vc_responsive elementor-default elementor-kit-45733" data-smooth-scroll-offset="0" data-smooth-scroll-offset-mobile="0" data-skip-responsive-menu="yes"> | |
| 3783 | + | |
| 3784 | +<a href="#" id="start" title="Start"></a> | |
| 3785 | + | |
| 3786 | +<div class="notification pos-top pos-right search-box bg--white border--bottom" data-animation="from-top" data-notification-link="search-box"> | |
| 3787 | + <form method="get" action="https://chum.carrieresante.gouv.qc.ca/"> | |
| 3788 | + <div class="row"> | |
| 3789 | + <div class="col-md-6 col-md-offset-3 col-sm-8 col-sm-offset-2"> | |
| 3790 | + <input type="search" name="s" placeholder="Type search query and hit enter" /> | |
| 3791 | + </div> | |
| 3792 | + </div><!--end of row--> | |
| 3793 | + </form> | |
| 3794 | +</div><!--end of notification--> | |
| 3795 | +<div class="nav-container"> | |
| 3796 | + | |
| 3797 | + <div class="bar bar--sm visible-xs original--bg bar--mobile-sticky" data-scroll-class="200px:pos-fixed"> | |
| 3798 | + <div class="container"> | |
| 3799 | + <div class="row"> | |
| 3800 | + <div class="col-xs-8 col-sm-10"> | |
| 3801 | + | |
| 3802 | +<a href="https://chum.carrieresante.gouv.qc.ca/" class="logo-holder"> | |
| 3803 | + <img class="logo logo-dark" alt="Logo Etablissement" src="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/06/logo_chum.png" /> | |
| 3804 | + <img class="logo logo-light" alt="Logo Etablissement" src="" /> | |
| 3805 | +</a> </div> | |
| 3806 | + <div class="col-xs-4 col-sm-2 text-right mobile-header"> | |
| 3807 | + <a href="#" class="hamburger-toggle" data-toggle-class="#menu1;hidden-xs"> | |
| 3808 | + <i class="icon--sm stack-interface stack-menu"></i> | |
| 3809 | + </a> | |
| 3810 | + </div> | |
| 3811 | + </div><!--end of row--> | |
| 3812 | + </div><!--end of container--> | |
| 3813 | + </div><!--end bar--> | |
| 3814 | + | |
| 3815 | + <nav id="menu1" class="bar bar--sm bar-1 hidden-xs hiddem-sm original--bg" data-scroll-class="200px:pos-fixed"> | |
| 3816 | + <div class="container"> | |
| 3817 | + <div class="row"> | |
| 3818 | + <div class="col-md-1 col-sm-2 hidden-xs"> | |
| 3819 | + <div class="bar__module"> | |
| 3820 | + | |
| 3821 | +<a href="https://chum.carrieresante.gouv.qc.ca/" class="logo-holder"> | |
| 3822 | + <img class="logo logo-dark" alt="Logo Etablissement" src="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/06/logo_chum.png" /> | |
| 3823 | + <img class="logo logo-light" alt="Logo Etablissement" src="" /> | |
| 3824 | +</a> | |
| 3825 | + </div><!--end module--> | |
| 3826 | + </div> | |
| 3827 | + <div class="col-md-11 col-sm-12 text-right text-left-xs text-left-sm"> | |
| 3828 | + <div class="bar__module"> | |
| 3829 | + <ul id="menu-header-fr" class="menu-horizontal text-left"><li id="menu-item-4481" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-4481 dropdown dropdown--hover"><a href="#" class="dropdown__trigger"><span>Emplois</span></a><div class="dropdown__container"><div class="container"><div class="row"><div class="dropdown__content col-md-4 col-sm-4"><ul class="menu-vertical"> <li id="menu-item-45752" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45752"><a href="https://chum.carrieresante.gouv.qc.ca/soins-infirmiers-et-cardiorespiratoires/">Soins infirmiers et cardiorespiratoires</a></li> | |
| 3830 | + <li id="menu-item-45750" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45750"><a href="https://chum.carrieresante.gouv.qc.ca/gestion/">Gestion</a></li> | |
| 3831 | + <li id="menu-item-45749" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45749"><a href="https://chum.carrieresante.gouv.qc.ca/personnel-de-ladministration/">Personnel de l’administration</a></li> | |
| 3832 | + <li id="menu-item-45753" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45753"><a href="https://chum.carrieresante.gouv.qc.ca/physique-et-genie-biomedical/">Physique et génie biomédical</a></li> | |
| 3833 | + <li id="menu-item-46249" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-46249"><a href="https://chum.carrieresante.gouv.qc.ca/professionnel-le-et-technicien-ne-de-la-sante-et-des-services-sociaux/">Professionnel.le et technicien.ne de la santé et des services sociaux</a></li> | |
| 3834 | + <li id="menu-item-45751" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45751"><a href="https://chum.carrieresante.gouv.qc.ca/assistance-a-la-personne-services-et-metiers/">Assistance à la personne – services et métiers</a></li> | |
| 3835 | +</ul></div></div></div></div></li> | |
| 3836 | +<li id="menu-item-20423" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20423"><a href="https://chum-recrutement.carrieresante.gouv.qc.ca">Dépose ton CV</a></li> | |
| 3837 | +<li id="menu-item-20422" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20422"><a href="https://chum.carrieresante.gouv.qc.ca/alerte-emplois/">Alerte emploi</a></li> | |
| 3838 | +<li id="menu-item-4839" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4839"><a href="https://chum.carrieresante.gouv.qc.ca/nous-joindre/">Nous joindre</a></li> | |
| 3839 | +</ul></div> | |
| 3840 | + | |
| 3841 | +<div class="bar__module stack-header-buttons"> | |
| 3842 | + | |
| 3843 | + | |
| 3844 | + | |
| 3845 | + <a | |
| 3846 | + class="btn btn--sm btn--demo" | |
| 3847 | + href="https://chum-recrutement.carrieresante.gouv.qc.ca" | |
| 3848 | + target="" | |
| 3849 | + > | |
| 3850 | + <span class="btn__text">Mon profil</span> | |
| 3851 | + </a> | |
| 3852 | + | |
| 3853 | + | |
| 3854 | +</div><!--end module--> </div> | |
| 3855 | + </div><!--end of row--> | |
| 3856 | + </div><!--end of container--> | |
| 3857 | + </nav><!--end bar--> | |
| 3858 | + | |
| 3859 | +</div> | |
| 3860 | +<div class="main-container"> | |
| 3861 | + | |
| 3862 | + | |
| 3863 | +<section> | |
| 3864 | + <div class="container"> | |
| 3865 | + <div class="row"> | |
| 3866 | + | |
| 3867 | + <div class="col-sm-10 col-md-8 col-sm-offset-1 col-md-offset-2"> | |
| 3868 | + <article> | |
| 3869 | + | |
| 3870 | + <div class="article__title text-center"> | |
| 3871 | + <h1 class="h2">Agent(e) planification programmation et recherche – Commissaire aux plaintes</h1> </div><!--end article title--> | |
| 3872 | + <span>6 août 2026</span> | <span></span> | |
| 3873 | + <div class="article__body post-content"> | |
| 3874 | + | |
| 3875 | + <div class="featured-image-holder"> | |
| 3876 | + </div> | |
| 3877 | + | |
| 3878 | + <div class="single_job_listing"> | |
| 3879 | + | |
| 3880 | +<ul class="job-listing-meta meta"> | |
| 3881 | + | |
| 3882 | + | |
| 3883 | + <li class="job-type temps-complet">TC - Temps complet</li> | |
| 3884 | + | |
| 3885 | + | |
| 3886 | + <li class="location"><a class="google_map_link" href="https://maps.google.com/maps?q=CHUM&zoom=14&size=512x512&maptype=roadmap&sensor=false" target="_blank">CHUM</a></li> | |
| 3887 | + | |
| 3888 | + <li class="date-posted"><time datetime="2026-08-06">Publié il y a 2 semaines</time></li> | |
| 3889 | + | |
| 3890 | + | |
| 3891 | + | |
| 3892 | + </ul> | |
| 3893 | + | |
| 3894 | + <div class="before-job"> | |
| 3895 | + <div class="job_application application"> | |
| 3896 | + | |
| 3897 | + <button id="applyButton_6a84dc7b998c4" class="application_button button">Postuler</button> | |
| 3898 | + <script> | |
| 3899 | + document.getElementById('applyButton_6a84dc7b998c4').addEventListener('click', function() { | |
| 3900 | + window.open('https://chum-recrutement.carrieresante.gouv.qc.ca/Emploi/Index/Consulter?code=2026-001624', '_blank'); | |
| 3901 | + }); | |
| 3902 | + </script> | |
| 3903 | + | |
| 3904 | + </div> | |
| 3905 | + </div> | |
| 3906 | + | |
| 3907 | + <div class="job_description"> | |
| 3908 | + | |
| 3909 | + <div class="informations-de-base"><div class="info-item"><span class="icon"><svg class="svg-location" xmlns="http://www.w3.org/2000/svg" width="17.384" height="24" viewBox="0 0 17.384 24"><path d="M8.692,0A8.7,8.7,0,0,0,0,8.692C0,14.64,7.778,23.372,8.11,23.74a.783.783,0,0,0,1.165,0c.331-.369,8.11-9.1,8.11-15.049A8.7,8.7,0,0,0,8.692,0m0,13.065a4.373,4.373,0,1,1,4.373-4.373,4.378,4.378,0,0,1-4.373,4.373" fill="#16375e"/></svg></span><span class="info-text">CHUM</span></div><div class="info-item"><span class="icon"><svg class="svg-salary" xmlns="http://www.w3.org/2000/svg" width="22" height="26" viewBox="0 0 22 26"><path d="M.6,7.913A.594.594,0,0,1,0,7.32V5.539A2.375,2.375,0,0,1,2.374,3.165H4.748V.593A.594.594,0,0,1,5.343,0H7.32a.593.593,0,0,1,.593.593V3.165h6.331V.593a.594.594,0,0,1,.6-.593h1.977a.593.593,0,0,1,.593.593V3.165h2.374a2.375,2.375,0,0,1,2.374,2.374V7.32a.593.593,0,0,1-.593.593ZM21.564,9.5a.593.593,0,0,1,.593.593v12.86a2.375,2.375,0,0,1-2.374,2.374H2.374A2.375,2.375,0,0,1,0,22.949V10.089A.594.594,0,0,1,.6,9.5Zm-5.879,3.34a.591.591,0,0,0-.838,0L9.6,18.036,7.329,15.742a.6.6,0,0,0-.84,0L5.084,17.133a.594.594,0,0,0,0,.84L9.167,22.09a.589.589,0,0,0,.838,0l7.071-7.014a.591.591,0,0,0,0-.838Z" fill="#16375e"/></svg></span><span class="info-text">Entre 31,06 $ et 55,04 $/heure</span></div><div class="info-item"><span class="icon"><svg class="svg-status" xmlns="http://www.w3.org/2000/svg" width="27" height="16" viewBox="0 0 27 16"><path d="M26.882,1.344V14.785a1.345,1.345,0,0,1-1.344,1.344H1.344A1.345,1.345,0,0,1,0,14.785V1.344A1.345,1.345,0,0,1,1.344,0H25.538a1.345,1.345,0,0,1,1.344,1.344M4.7,2.016H2.016V4.7A2.687,2.687,0,0,0,4.7,2.016m0,12.1a2.687,2.687,0,0,0-2.688-2.688v2.688ZM16.8,8.065c0-2.228-1.5-4.032-3.36-4.032s-3.36,1.8-3.36,4.032,1.5,4.032,3.36,4.032,3.36-1.8,3.36-4.032m8.065-6.049H22.178A2.687,2.687,0,0,0,24.866,4.7Zm0,9.409a2.687,2.687,0,0,0-2.688,2.688h2.688Z" fill="#16375e"/></svg></span><span class="info-text">TC - Temps complet</span></div></div> <h2>Mandat</h2> | |
| 3910 | +<div class="default-text"><span></p> | |
| 3911 | +<p>Le ou la commissaire aux plaintes et à la qualité des services invite les personnes intéressées et qui possèdent les exigences requises, à soumettre leur candidature au poste de conseiller(ère) – Agent de planification, de programmation et de recherche auprès du ou de la commissaire aux plaintes et à la qualité des services.</p> | |
| 3912 | +<p>Ces candidatures sont recherchées en vue de pourvoir un poste à temps complet, exercé de manière exclusive au sein du commissaire, dans le respect de son indépendance.</p> | |
| 3913 | +<p>CONTEXTE</p> | |
| 3914 | +<p>Le commissaire aux plaintes et à la qualité des services (ci-après le commissaire) est une instance indépendante prévue par la Loi sur la gouvernance du système de santé et des services sociaux (LGSSSS). Il applique le régime d’examen des plaintes, incluant les signalements, et veille au respect des droits des usagers(ères) dans une perspective d’amélioration continue et systémique de la qualité des services.</p> | |
| 3915 | +<p>Pour préserver son indépendance et assurer la confidentialité des démarches, le commissaire s’appuie sur une équipe dédiée exclusivement à l’examen impartial et rigoureux des plaintes et des signalements. Il garantit un accès libre, confidentiel et sans entrave à tous les usagers(ères) agissant toujours avec impartialité, équité et intégrité.</p> | |
| 3916 | +<p>Par son action, le commissaire joue un rôle clé dans la protection des personnes vulnérables et dans l’évolution des pratiques, contribuant ainsi à bâtir un réseau de santé et de services sociaux plus transparent, plus humain et à l’écoute des besoins de ses usagers(ères).</p> | |
| 3917 | +<p>Joindre le commissaire, c’est contribuer à cette mission d’excellence, de confiance et de protection des droits, au service de la population.</p> | |
| 3918 | +<p>Sous l’autorité du ou de la commissaire, le ou la conseiller(ère) agit à titre de ressource professionnelle experte. Il ou elle assure une analyse rigoureuse de l’information recueillie aux plans légal, clinique, sociosanitaire et organisationnel, en tenant compte des pratiques, normes, politiques, et lois qui encadrent le réseau de la santé et des services sociaux, dont la Loi visant à lutter contre la maltraitance envers les aînés et toute autre personne majeure en situation de vulnérabilité.<br />Le ou la conseiller(ère) collabore avec le ou la commissaire à l’examen approfondi des dossiers, à partir des informations fournies par les usagers(ères), leurs proches, les intervenants(es), les gestionnaires et les directions concernées. Il ou elle contribue à assurer le respect des droits des usagers(ères), la protection des personnes vulnérables et l’application rigoureuse du régime d’examen des plaintes.</p> | |
| 3919 | +<p>Le ou la conseiller(ère) contribue également à la promotion du régime, à la diffusion de l’information sur les droits et obligations des usagers(ères), ainsi qu’à la sensibilisation des acteurs du réseau.</p> | |
| 3920 | +<p>Ce poste exige une capacité d’analyse avancée, un sens développé de la collaboration, ainsi qu’un engagement profond envers l’éthique, la confidentialité et le respect des personnes.</p> | |
| 3921 | +<p>De manière plus spécifique, les principaux champs d’action seront les suivants : </p> | |
| 3922 | +<p> </p> | |
| 3923 | +<ul> | |
| 3924 | +<li>Procéder à l’analyse rigoureuse des plaintes et signalements, conformément au régime d’examen des plaintes prévu par la loi;</li> | |
| 3925 | +<li>Recueillir, examiner et synthétiser les informations pertinentes auprès des usagers(ères), de leurs proches, des intervenants(es), des gestionnaires et des directions concernées;</li> | |
| 3926 | +<li>Analyser l’information à la lumière des normes, lois, politiques et pratiques en vigueur, et contribuer à la formulation de conclusions motivées visant l’amélioration continue des services et la diminution des risques de récurrence;</li> | |
| 3927 | +<li>Contribuer à la détection, la documentation et l’analyse des situations de maltraitance, et proposer des recommandations adaptées;</li> | |
| 3928 | +<li>Communiquer, dans un langage clair et respectueux, les résultats de l’analyse, les recommandations ou observations aux personnes concernées et, au besoin, aux instances impliquées, en assurant la traçabilité des suivis;</li> | |
| 3929 | +<li>Assurer un accueil respectueux, confidentiel et impartial des usagers(ères) et de leurs proches, et les accompagner dans le processus de plainte de manière humaine et professionnelle;</li> | |
| 3930 | +<li>Documenter rigoureusement les dossiers dans les systèmes appropriés, en assurant la qualité, la confidentialité et la conformité aux lois sur la protection des renseignements personnels;</li> | |
| 3931 | +<li>Collaborer activement avec les partenaires internes et externes pour soutenir la cohérence et l’impact des interventions;</li> | |
| 3932 | +<li>Collaborer à l’amélioration continue des pratiques au sein du commissaire, incluant l’analyse des tendances, l’identification de problématiques systémiques et la rédaction de bilans ou rapports;</li> | |
| 3933 | +<li>Participer à des activités de perfectionnement professionnel (formations, colloques, communautés de pratique) afin de maintenir un haut niveau d’expertise;</li> | |
| 3934 | +<li>Effectuer toute autre tâche connexe relevant de son titre d’emploi, à la demande du commissaire, dans le respect de l’indépendance et de la mission du commissaire aux plaintes et à la qualité des services.</li> | |
| 3935 | +</ul> | |
| 3936 | +<p>*Veuillez considérer que les responsabilités pourraient être modifiées en fonction de l’évolution de Santé Québec.</p> | |
| 3937 | +<p></span></div> | |
| 3938 | +<h2>Exigences</h2> | |
| 3939 | +<div class="default-text"><span></p> | |
| 3940 | +<p>La personne candidate doit détenir un :</p> | |
| 3941 | +<ul> | |
| 3942 | +<li>diplôme universitaire de premier cycle dans une discipline appropriée : travail social, droit, sciences de la santé, soins infirmiers, sciences humaines, administration publique ou tout autre domaine pertinent lié au secteur de la santé et des services sociaux.</li> | |
| 3943 | +</ul> | |
| 3944 | +<p>De plus, la personne candidate doit faire la démonstration d’une expérience significative dans un rôle professionnel impliquant:</p> | |
| 3945 | +<ul> | |
| 3946 | +<li>l’analyse de situations complexes ou la coordination de dossiers multidimensionnels ;</li> | |
| 3947 | +<li>la collaboration interdisciplinaire ou intersectorielle;</li> | |
| 3948 | +<li>une bonne compréhension du réseau de la santé et des services sociaux, de son administration et de son cadre légal;</li> | |
| 3949 | +<li>une bonne compréhension ou intérêt pour le régime d’examen des plaintes, les droits des usagers(ères), et le cadre légal du réseau.</li> | |
| 3950 | +<li>Expérience dans un secteur clinique (Un atout)</li> | |
| 3951 | +</ul> | |
| 3952 | +<p> </p> | |
| 3953 | +<p><strong>Pourquoi choisir le CHUM : </strong></p> | |
| 3954 | +<ul> | |
| 3955 | +<li>Un environnement de travail stimulant où le travail d’équipe et la convivialité occupent une place importante; </li> | |
| 3956 | +<li>4 semaines de vacances payées après 1 année de travail à temps complet </li> | |
| 3957 | +<li>13 congés fériés </li> | |
| 3958 | +<li>9.6 jours de maladie payés, monnayables en décembre de chaque année </li> | |
| 3959 | +<li>Fonds de pension à prestations déterminées </li> | |
| 3960 | +<li>Régime d’assurances collectives </li> | |
| 3961 | +<li>Station de métro champ-de-mars reliée au CHUM par un tunnel </li> | |
| 3962 | +</ul> | |
| 3963 | +<p>Nous remercions toutes les personnes qui poseront leur candidature, mais ne communiquerons qu’avec celles retenues pour un test ou une entrevue. </p> | |
| 3964 | +<p>Diplôme obtenu hors Québec : Nous exigeons l’évaluation comparative des études émise par le ministère de l’Immigration de la Francisation et de l’Intégration : https://www.quebec.ca/immigration/travailler-quebec/faire-reconnaitre-competences-acquises-etranger/obtenir-evaluation-comparative. » </p> | |
| 3965 | +<p>Il est « essentiel » de joindre votre CV au présent formulaire pour que votre candidature soit considérée </p> | |
| 3966 | +<p> </p> | |
| 3967 | +<p>Cet affichage est réservé pour les personnes à l’emploi du réseau de la santé du réseau de la santé et des services sociaux (RSSS) intégrés à Santé Québec. </span></div> | |
| 3968 | + <p> | |
| 3969 | + <h2>Accès à l'égalité en emploi</h2> | |
| 3970 | + Conformément à la <b>Loi sur l'Accès à l'égalité en emploi</b>, tous les établissements de santé et de services sociaux | |
| 3971 | + appliquent un programme d'accès à l'égalité. De ce fait, les personnes issues des groupes visés | |
| 3972 | + (femme, autochtone, minorité visible, minorité ethnique et personne handicapée) sont encouragées à faire parvenir leur | |
| 3973 | + candidature. De plus, des mesures d'adaptation peuvent être offertes aux personnes handicapées en fonction de leurs | |
| 3974 | + besoins. Selon le contexte, le genre masculin ou féminin utilisé dans les affichages désigne aussi bien les femmes que | |
| 3975 | + les hommes. | |
| 3976 | + </p> | |
| 3977 | + </div> | |
| 3978 | + <hr><div class="conditions-de-travail"><div class="ct-row"><span class="ct-label">Catégorie :</span><span class="ct-value">Professionnel.le et technicien.ne de la santé et des services sociaux</span></div><div class="ct-row"><span class="ct-label">Période salariale :</span><span class="ct-value">Horaire</span></div><div class="ct-row"><span class="ct-label">Durée :</span><span class="ct-value">Permanent</span></div><div class="ct-row"><span class="ct-label">Date d'affichage :</span><span class="ct-value">du 2026-08-06 à 2026-08-20</span></div></div> | |
| 3979 | + <div class="apply-buttons"> | |
| 3980 | + <div class="apply-buttons-1"> | |
| 3981 | + <h2>Cet emploi t'intéresse?</h2> | |
| 3982 | + <div class="job_application application"> | |
| 3983 | + | |
| 3984 | + <button id="applyButton_6a84dc7b9a167" class="application_button button">Postuler</button> | |
| 3985 | + <script> | |
| 3986 | + document.getElementById('applyButton_6a84dc7b9a167').addEventListener('click', function() { | |
| 3987 | + window.open('https://chum-recrutement.carrieresante.gouv.qc.ca/Emploi/Index/Consulter?code=2026-001624', '_blank'); | |
| 3988 | + }); | |
| 3989 | + </script> | |
| 3990 | + | |
| 3991 | + </div> | |
| 3992 | + </div> | |
| 3993 | + <div class="apply-buttons-2"> | |
| 3994 | + <h2>Tu as des questions ou besoin d’information?</h2> | |
| 3995 | + <div> | |
| 3996 | + <a href="https://chum.carrieresante.gouv.qc.ca/nous-joindre/" rel="noopener">Nous joindre</a> | |
| 3997 | + </div> | |
| 3998 | + </div> | |
| 3999 | + </div> | |
| 4000 | + | |
| 4001 | + </div> | |
| 4002 | + | |
| 4003 | +<div class="addtoany_share_save_container addtoany_content addtoany_content_bottom"><div class="addtoany_header">Partagez :</div><div class="a2a_kit a2a_kit_size_32 addtoany_list" data-a2a-url="https://chum.carrieresante.gouv.qc.ca/poste/agent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2/" data-a2a-title="Agent(e) planification programmation et recherche – Commissaire aux plaintes"><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fagent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2%2F&linkname=Agent%28e%29%20planification%20programmation%20et%20recherche%20%E2%80%93%20Commissaire%20aux%20plaintes" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fagent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2%2F&linkname=Agent%28e%29%20planification%20programmation%20et%20recherche%20%E2%80%93%20Commissaire%20aux%20plaintes" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fagent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2%2F&linkname=Agent%28e%29%20planification%20programmation%20et%20recherche%20%E2%80%93%20Commissaire%20aux%20plaintes" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fagent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2%2F&linkname=Agent%28e%29%20planification%20programmation%20et%20recherche%20%E2%80%93%20Commissaire%20aux%20plaintes" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fagent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2%2F&linkname=Agent%28e%29%20planification%20programmation%20et%20recherche%20%E2%80%93%20Commissaire%20aux%20plaintes" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share"></a></div></div> <strong>Partagez :</strong> <div class="a2a_kit a2a_kit_size_32 addtoany_list" data-a2a-url="https://chum.carrieresante.gouv.qc.ca/poste/agent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2/" data-a2a-title="Agent(e) planification programmation et recherche – Commissaire aux plaintes"><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fagent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2%2F&linkname=Agent%28e%29%20planification%20programmation%20et%20recherche%20%E2%80%93%20Commissaire%20aux%20plaintes" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fagent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2%2F&linkname=Agent%28e%29%20planification%20programmation%20et%20recherche%20%E2%80%93%20Commissaire%20aux%20plaintes" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fagent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2%2F&linkname=Agent%28e%29%20planification%20programmation%20et%20recherche%20%E2%80%93%20Commissaire%20aux%20plaintes" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fagent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2%2F&linkname=Agent%28e%29%20planification%20programmation%20et%20recherche%20%E2%80%93%20Commissaire%20aux%20plaintes" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fagent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2%2F&linkname=Agent%28e%29%20planification%20programmation%20et%20recherche%20%E2%80%93%20Commissaire%20aux%20plaintes" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share"></a></div> <div class="post__tags"> | |
| 4004 | + </div> | |
| 4005 | + | |
| 4006 | + </div> | |
| 4007 | + | |
| 4008 | + | |
| 4009 | + </article><!--end item--> | |
| 4010 | + </div> | |
| 4011 | + | |
| 4012 | + | |
| 4013 | + </div><!--end of row--> | |
| 4014 | + </div><!--end of container--> | |
| 4015 | +</section> | |
| 4016 | + | |
| 4017 | +<footer class="footer-6 unpad--bottom bg--secondary"> | |
| 4018 | + <div class="container"> | |
| 4019 | + <div class="row"> | |
| 4020 | + <div class="col-sm-6"><div id="block-17" class="widget widget_block sidebar__element"><p><span class="left-section"><br /> | |
| 4021 | +<span class="footer-t">Emplois disponibles</span></p> | |
| 4022 | +<p><span class="footer-s"><span class="link"><a href="https://chum.carrieresante.gouv.qc.ca/soins-infirmiers-et-cardiorespiratoires/" rel="noopener" >Soins infirmiers et cardiorespiratoires</a></span><br /> | |
| 4023 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/gestion/" rel="noopener" >Gestion</a></span><br /> | |
| 4024 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/personnel-de-ladministration/" rel="noopener" >Personnel de bureau,professionnel.le et technicien.ne de l'administration</a></span><br /> | |
| 4025 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/physique-et-genie-biomedical/" rel="noopener" >Physique et génie biomédical</a></span><br /> | |
| 4026 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/professionnel-le-et-technicien-ne-de-la-sante-et-des-services-sociaux/" rel="noopener" >Professionnel.le et technicien.ne de la santé et des services sociaux</a></span><br /> | |
| 4027 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/assistance-a-la-personne-services-et-metiers/" rel="noopener" >Assistance à la personne, emplois de services et métiers</a></span><br /> | |
| 4028 | +</span><br /></p> | |
| 4029 | +</div></div><div class="col-sm-6"><div id="block-22" class="widget widget_block sidebar__element"><div class="right-section"> | |
| 4030 | +<p><span class="footer"><a href="https://www.chumontreal.qc.ca/" target="_blank" rel="noopener" class="footer-t">Découvrir le CHUM</a><br /> | |
| 4031 | + <a href="https://www.chumontreal.qc.ca/enseignement-academie/stages-chum" rel="noopener" class="footer-t" target="_blank">Trouver un stage</a><br /> | |
| 4032 | + <a href="https://www.chumontreal.qc.ca/repertoire/service-benevolat-animation-loisirs" rel="noopener" class="footer-t" target="_blank">Devenir bénévole</a><br /> | |
| 4033 | +</span></p> | |
| 4034 | +<div class="footer-with-b"> | |
| 4035 | + <a href="https://chum.carrieresante.gouv.qc.ca/nous-joindre/" rel="noopener" class="footer-b">Nous joindre</a><br /> | |
| 4036 | + <a href="https://chum-recrutement.carrieresante.gouv.qc.ca" target="_blank" rel="noopener" class="footer-b">Dépose ton CV</a> | |
| 4037 | +</div> | |
| 4038 | +</div> | |
| 4039 | +</div></div><div class="clear"></div> </div><!--end of row--> | |
| 4040 | + </div><!--end of container--> | |
| 4041 | + <div class="footer__lower text-center-xs"> | |
| 4042 | + <div class="container"> | |
| 4043 | + <div class="row"> | |
| 4044 | + <div class="col-sm-3"> | |
| 4045 | + | |
| 4046 | + </div> | |
| 4047 | + <div class="col-sm-6 footer-stack-copyright"> | |
| 4048 | + <div class="menu-footer-menu-container"><ul id="menu-footer-menu" class="menu"><li id="menu-item-4840" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4840"><a href="https://chum.carrieresante.gouv.qc.ca/politique-de-confidentialite/">Politique de confidentialité</a></li> | |
| 4049 | +</ul></div> Copyright © 2026 - Makila <br> | |
| 4050 | + </div> | |
| 4051 | + <div class="col-sm-3 text-right text-center-xs"> | |
| 4052 | + | |
| 4053 | + </div> | |
| 4054 | + </div><!--end of row--> | |
| 4055 | + </div><!--end of container--> | |
| 4056 | + </div> | |
| 4057 | +</footer> | |
| 4058 | +</div><!-- /main-container --> | |
| 4059 | + | |
| 4060 | +<script type="text/javascript"> | |
| 4061 | +(function(){var s = document.getElementsByTagName("script")[0]; | |
| 4062 | +var b = document.createElement("script"); | |
| 4063 | +b.type = "text/javascript";b.async = true; | |
| 4064 | +b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js"; | |
| 4065 | +s.parentNode.insertBefore(b, s);})(); | |
| 4066 | +</script> | |
| 4067 | + | |
| 4068 | +<script type="speculationrules"> | |
| 4069 | +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/stack-child/*","/wp-content/themes/stack/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} | |
| 4070 | +</script> | |
| 4071 | +<!-- WP Job Manager Structured Data --> | |
| 4072 | +<script type="application/ld+json">{"@context":"http:\/\/schema.org\/","@type":"JobPosting","datePosted":"2026-08-06T00:00:00-04:00","validThrough":"2026-08-20T23:59:59-04:00","title":"Agent(e) planification programmation et recherche &#8211; Commissaire aux plaintes","description":"<h2>Mandat<\/h2>\n<div class=\"default-text\"><span><\/p>\n<p>Le ou la commissaire aux plaintes et \u00e0 la qualit\u00e9 des services invite les personnes int\u00e9ress\u00e9es et qui poss\u00e8dent les exigences requises, \u00e0 soumettre leur candidature au poste de conseiller(\u00e8re) \u2013 Agent de planification, de programmation et de recherche aupr\u00e8s du ou de la commissaire aux plaintes et \u00e0 la qualit\u00e9 des services.<\/p>\n<p>Ces candidatures sont recherch\u00e9es en vue de pourvoir un poste \u00e0 temps complet, exerc\u00e9 de mani\u00e8re exclusive au sein du commissaire, dans le respect de son ind\u00e9pendance.<\/p>\n<p>CONTEXTE<\/p>\n<p>Le commissaire aux plaintes et \u00e0 la qualit\u00e9 des services (ci-apr\u00e8s le commissaire) est une instance ind\u00e9pendante pr\u00e9vue par la Loi sur la gouvernance du syst\u00e8me de sant\u00e9 et des services sociaux (LGSSSS). Il applique le r\u00e9gime d\u2019examen des plaintes, incluant les signalements, et veille au respect des droits des usagers(\u00e8res) dans une perspective d\u2019am\u00e9lioration continue et syst\u00e9mique de la qualit\u00e9 des services.<\/p>\n<p>Pour pr\u00e9server son ind\u00e9pendance et assurer la confidentialit\u00e9 des d\u00e9marches, le commissaire s\u2019appuie sur une \u00e9quipe d\u00e9di\u00e9e exclusivement \u00e0 l\u2019examen impartial et rigoureux des plaintes et des signalements. Il garantit un acc\u00e8s libre, confidentiel et sans entrave \u00e0 tous les usagers(\u00e8res) agissant toujours avec impartialit\u00e9, \u00e9quit\u00e9 et int\u00e9grit\u00e9.<\/p>\n<p>Par son action, le commissaire joue un r\u00f4le cl\u00e9 dans la protection des personnes vuln\u00e9rables et dans l\u2019\u00e9volution des pratiques, contribuant ainsi \u00e0 b\u00e2tir un r\u00e9seau de sant\u00e9 et de services sociaux plus transparent, plus humain et \u00e0 l\u2019\u00e9coute des besoins de ses usagers(\u00e8res).<\/p>\n<p>Joindre le commissaire, c\u2019est contribuer \u00e0 cette mission d\u2019excellence, de confiance et de protection des droits, au service de la population.<\/p>\n<p>Sous l\u2019autorit\u00e9 du ou de la commissaire, le ou la conseiller(\u00e8re) agit \u00e0 titre de ressource professionnelle experte. Il ou elle assure une analyse rigoureuse de l\u2019information recueillie aux plans l\u00e9gal, clinique, sociosanitaire et organisationnel, en tenant compte des pratiques, normes, politiques, et lois qui encadrent le r\u00e9seau de la sant\u00e9 et des services sociaux, dont la Loi visant \u00e0 lutter contre la maltraitance envers les a\u00een\u00e9s et toute autre personne majeure en situation de vuln\u00e9rabilit\u00e9.<br \/>Le ou la conseiller(\u00e8re) collabore avec le ou la commissaire \u00e0 l\u2019examen approfondi des dossiers, \u00e0 partir des informations fournies par les usagers(\u00e8res), leurs proches, les intervenants(es), les gestionnaires et les directions concern\u00e9es. Il ou elle contribue \u00e0 assurer le respect des droits des usagers(\u00e8res), la protection des personnes vuln\u00e9rables et l\u2019application rigoureuse du r\u00e9gime d\u2019examen des plaintes.<\/p>\n<p>Le ou la conseiller(\u00e8re) contribue \u00e9galement \u00e0 la promotion du r\u00e9gime, \u00e0 la diffusion de l\u2019information sur les droits et obligations des usagers(\u00e8res), ainsi qu\u2019\u00e0 la sensibilisation des acteurs du r\u00e9seau.<\/p>\n<p>Ce poste exige une capacit\u00e9 d\u2019analyse avanc\u00e9e, un sens d\u00e9velopp\u00e9 de la collaboration, ainsi qu\u2019un engagement profond envers l\u2019\u00e9thique, la confidentialit\u00e9 et le respect des personnes.<\/p>\n<p>De mani\u00e8re plus sp\u00e9cifique, les principaux champs d\u2019action seront les suivants :\u00a0<\/p>\n<p>\u00a0<\/p>\n<ul>\n<li>Proc\u00e9der \u00e0 l\u2019analyse rigoureuse des plaintes et signalements, conform\u00e9ment au r\u00e9gime d\u2019examen des plaintes pr\u00e9vu par la loi;<\/li>\n<li>Recueillir, examiner et synth\u00e9tiser les informations pertinentes aupr\u00e8s des usagers(\u00e8res), de leurs proches, des intervenants(es), des gestionnaires et des directions concern\u00e9es;<\/li>\n<li>Analyser l\u2019information \u00e0 la lumi\u00e8re des normes, lois, politiques et pratiques en vigueur, et contribuer \u00e0 la formulation de conclusions motiv\u00e9es visant l\u2019am\u00e9lioration continue des services et la diminution des risques de r\u00e9currence;<\/li>\n<li>Contribuer \u00e0 la d\u00e9tection, la documentation et l\u2019analyse des situations de maltraitance, et proposer des recommandations adapt\u00e9es;<\/li>\n<li>Communiquer, dans un langage clair et respectueux, les r\u00e9sultats de l\u2019analyse, les recommandations ou observations aux personnes concern\u00e9es et, au besoin, aux instances impliqu\u00e9es, en assurant la tra\u00e7abilit\u00e9 des suivis;<\/li>\n<li>Assurer un accueil respectueux, confidentiel et impartial des usagers(\u00e8res) et de leurs proches, et les accompagner dans le processus de plainte de mani\u00e8re humaine et professionnelle;<\/li>\n<li>Documenter rigoureusement les dossiers dans les syst\u00e8mes appropri\u00e9s, en assurant la qualit\u00e9, la confidentialit\u00e9 et la conformit\u00e9 aux lois sur la protection des renseignements personnels;<\/li>\n<li>Collaborer activement avec les partenaires internes et externes pour soutenir la coh\u00e9rence et l\u2019impact des interventions;<\/li>\n<li>Collaborer \u00e0 l\u2019am\u00e9lioration continue des pratiques au sein du commissaire, incluant l\u2019analyse des tendances, l\u2019identification de probl\u00e9matiques syst\u00e9miques et la r\u00e9daction de bilans ou rapports;<\/li>\n<li>Participer \u00e0 des activit\u00e9s de perfectionnement professionnel (formations, colloques, communaut\u00e9s de pratique) afin de maintenir un haut niveau d\u2019expertise;<\/li>\n<li>Effectuer toute autre t\u00e2che connexe relevant de son titre d\u2019emploi, \u00e0 la demande du commissaire, dans le respect de l\u2019ind\u00e9pendance et de la mission du commissaire aux plaintes et \u00e0 la qualit\u00e9 des services.<\/li>\n<\/ul>\n<p>*Veuillez consid\u00e9rer que les responsabilit\u00e9s pourraient \u00eatre modifi\u00e9es en fonction de l\u2019\u00e9volution de Sant\u00e9 Qu\u00e9bec.<\/p>\n<p><\/span><\/div>\n<h2>Exigences<\/h2>\n<div class=\"default-text\"><span><\/p>\n<p>La personne candidate doit d\u00e9tenir un :<\/p>\n<ul>\n<li>dipl\u00f4me universitaire de premier cycle dans une discipline appropri\u00e9e : travail social, droit, sciences de la sant\u00e9, soins infirmiers, sciences humaines, administration publique ou tout autre domaine pertinent li\u00e9 au secteur de la sant\u00e9 et des services sociaux.<\/li>\n<\/ul>\n<p>De plus, la personne candidate doit faire la d\u00e9monstration d\u2019une exp\u00e9rience significative dans un r\u00f4le professionnel impliquant:<\/p>\n<ul>\n<li>l\u2019analyse de situations complexes ou la coordination de dossiers multidimensionnels ;<\/li>\n<li>la collaboration interdisciplinaire ou intersectorielle;<\/li>\n<li>une bonne compr\u00e9hension du r\u00e9seau de la sant\u00e9 et des services sociaux, de son administration et de son cadre l\u00e9gal;<\/li>\n<li>une bonne compr\u00e9hension ou int\u00e9r\u00eat pour le r\u00e9gime d\u2019examen des plaintes, les droits des usagers(\u00e8res), et le cadre l\u00e9gal du r\u00e9seau.<\/li>\n<li>Exp\u00e9rience dans un secteur clinique (Un atout)<\/li>\n<\/ul>\n<p>\u00a0<\/p>\n<p><strong>Pourquoi choisir le CHUM :\u00a0<\/strong><\/p>\n<ul>\n<li>Un environnement de travail stimulant o\u00f9 le travail d\u2019\u00e9quipe et la convivialit\u00e9 occupent une place importante;\u00a0<\/li>\n<li>4 semaines de vacances pay\u00e9es apr\u00e8s 1 ann\u00e9e de travail \u00e0 temps complet\u00a0<\/li>\n<li>13 cong\u00e9s f\u00e9ri\u00e9s\u00a0<\/li>\n<li>9.6 jours de maladie pay\u00e9s, monnayables en d\u00e9cembre de chaque ann\u00e9e\u00a0<\/li>\n<li>Fonds de pension \u00e0 prestations d\u00e9termin\u00e9es\u00a0<\/li>\n<li>R\u00e9gime d\u2019assurances collectives\u00a0<\/li>\n<li>Station de m\u00e9tro champ-de-mars reli\u00e9e au CHUM par un tunnel\u00a0<\/li>\n<\/ul>\n<p>Nous remercions toutes les personnes qui poseront leur candidature, mais ne communiquerons qu\u2019avec celles retenues pour un test ou une entrevue.\u00a0\u00a0<\/p>\n<p>Dipl\u00f4me obtenu hors Qu\u00e9bec : Nous exigeons l\u2019\u00e9valuation comparative des \u00e9tudes \u00e9mise par le minist\u00e8re de l\u2019Immigration de la Francisation et de l\u2019Int\u00e9gration : https:\/\/www.quebec.ca\/immigration\/travailler-quebec\/faire-reconnaitre-competences-acquises-etranger\/obtenir-evaluation-comparative. \u00bb\u00a0<\/p>\n<p>Il est \u00ab essentiel \u00bb de joindre votre CV au pr\u00e9sent formulaire pour que votre candidature soit consid\u00e9r\u00e9e\u00a0<\/p>\n<p>\u00a0<\/p>\n<p>Cet affichage est r\u00e9serv\u00e9 pour les personnes \u00e0 l&#8217;emploi du r\u00e9seau de la sant\u00e9 du r\u00e9seau de la sant\u00e9 et des services sociaux (RSSS) int\u00e9gr\u00e9s \u00e0 Sant\u00e9 Qu\u00e9bec.\u00a0\u00a0\u00a0<\/span><\/div>\n","employmentType":["FULL_TIME"],"hiringOrganization":{"@type":"Organization","name":""},"identifier":{"@type":"PropertyValue","name":"","value":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/agent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2\/"},"jobLocation":{"@type":"Place","address":"CHUM"},"directApply":true,"mainEntityOfPage":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/agent-e-planification-programmation-et-recherche-commissaire-aux-plaintes-2\/"}}</script> <script> | |
| 4073 | + const lazyloadRunObserver = () => { | |
| 4074 | + const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); | |
| 4075 | + const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { | |
| 4076 | + entries.forEach( ( entry ) => { | |
| 4077 | + if ( entry.isIntersecting ) { | |
| 4078 | + let lazyloadBackground = entry.target; | |
| 4079 | + if( lazyloadBackground ) { | |
| 4080 | + lazyloadBackground.classList.add( 'e-lazyloaded' ); | |
| 4081 | + } | |
| 4082 | + lazyloadBackgroundObserver.unobserve( entry.target ); | |
| 4083 | + } | |
| 4084 | + }); | |
| 4085 | + }, { rootMargin: '200px 0px 200px 0px' } ); | |
| 4086 | + lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { | |
| 4087 | + lazyloadBackgroundObserver.observe( lazyloadBackground ); | |
| 4088 | + } ); | |
| 4089 | + }; | |
| 4090 | + const events = [ | |
| 4091 | + 'DOMContentLoaded', | |
| 4092 | + 'elementor/lazyload/observe', | |
| 4093 | + ]; | |
| 4094 | + events.forEach( ( event ) => { | |
| 4095 | + document.addEventListener( event, lazyloadRunObserver ); | |
| 4096 | + } ); | |
| 4097 | + </script> | |
| 4098 | + <style id="global-styles-inline-css"> | |
| 4099 | +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-family--montserrat: Montserrat;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;} | |
| 4100 | +/*# sourceURL=global-styles-inline-css */ | |
| 4101 | +</style> | |
| 4102 | +<script id="wp-hooks-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script> | |
| 4103 | +<script id="wp-i18n-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script> | |
| 4104 | +<script id="wp-i18n-js-after"> | |
| 4105 | +wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); | |
| 4106 | +//# sourceURL=wp-i18n-js-after | |
| 4107 | +</script> | |
| 4108 | +<script id="swv-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.1.6"></script> | |
| 4109 | +<script id="contact-form-7-js-translations"> | |
| 4110 | +( function( domain, translations ) { | |
| 4111 | + var localeData = translations.locale_data[ domain ] || translations.locale_data.messages; | |
| 4112 | + localeData[""].domain = domain; | |
| 4113 | + wp.i18n.setLocaleData( localeData, domain ); | |
| 4114 | +} )( "contact-form-7", {"translation-revision-date":"2026-07-27 15:37:27+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"This contact form is placed in the wrong place.":["Ce formulaire de contact est plac\u00e9 dans un mauvais endroit."],"Error:":["Erreur\u00a0:"]}},"comment":{"reference":"includes\/js\/index.js"}} ); | |
| 4115 | +//# sourceURL=contact-form-7-js-translations | |
| 4116 | +</script> | |
| 4117 | +<script id="contact-form-7-js-before"> | |
| 4118 | +var wpcf7 = { | |
| 4119 | + "api": { | |
| 4120 | + "root": "https:\/\/chum.carrieresante.gouv.qc.ca\/wp-json\/", | |
| 4121 | + "namespace": "contact-form-7\/v1" | |
| 4122 | + }, | |
| 4123 | + "cached": 1 | |
| 4124 | +}; | |
| 4125 | +//# sourceURL=contact-form-7-js-before | |
| 4126 | +</script> | |
| 4127 | +<script id="contact-form-7-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.6"></script> | |
| 4128 | +<script id="wpmssab-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/wpmss/wpmssab.min.js?ver=1708979088"></script> | |
| 4129 | +<script id="SmoothScroll-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/mousewheel-smooth-scroll/js/SmoothScroll.min.js?ver=1.5.1"></script> | |
| 4130 | +<script id="wpmss-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/wpmss/wpmss.min.js?ver=1708979088"></script> | |
| 4131 | +<script id="wpcf7cf-scripts-js-extra"> | |
| 4132 | +var wpcf7cf_global_settings = {"ajaxurl":"https://chum.carrieresante.gouv.qc.ca/wp-admin/admin-ajax.php"}; | |
| 4133 | +//# sourceURL=wpcf7cf-scripts-js-extra | |
| 4134 | +</script> | |
| 4135 | +<script id="wpcf7cf-scripts-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/cf7-conditional-fields/js/scripts.js?ver=2.7.8"></script> | |
| 4136 | +<script id="google-recaptcha-js" src="https://www.google.com/recaptcha/api.js?render=6LeEyacoAAAAAFzI4jY6030tift5n1S0tecQWMkd&ver=3.0"></script> | |
| 4137 | +<script id="wp-polyfill-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0"></script> | |
| 4138 | +<script id="wpcf7-recaptcha-js-before"> | |
| 4139 | +var wpcf7_recaptcha = { | |
| 4140 | + "sitekey": "6LeEyacoAAAAAFzI4jY6030tift5n1S0tecQWMkd", | |
| 4141 | + "actions": { | |
| 4142 | + "homepage": "homepage", | |
| 4143 | + "contactform": "contactform" | |
| 4144 | + } | |
| 4145 | +}; | |
| 4146 | +//# sourceURL=wpcf7-recaptcha-js-before | |
| 4147 | +</script> | |
| 4148 | +<script id="wpcf7-recaptcha-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/contact-form-7/modules/recaptcha/index.js?ver=6.1.6"></script> | |
| 4149 | +<script id="ebor-parallax-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/parallax.js?ver=10.5.21"></script> | |
| 4150 | +<script id="ebor-isotope-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/isotope.js?ver=10.5.21"></script> | |
| 4151 | +<script id="final-countdown-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/final-countdown.js?ver=10.5.21"></script> | |
| 4152 | +<script id="flickity-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/flickity.js?ver=10.5.21"></script> | |
| 4153 | +<script id="granim-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/granim.js?ver=10.5.21"></script> | |
| 4154 | +<script id="smooth-scroll-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/smooth-scroll.js?ver=10.5.21"></script> | |
| 4155 | +<script id="spectragram-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/spectragram.js?ver=10.5.21"></script> | |
| 4156 | +<script id="twitter-post-fetcher-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/twitter-post-fetcher.js?ver=10.5.21"></script> | |
| 4157 | +<script id="ytplayer-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/ytplayer.js?ver=10.5.21"></script> | |
| 4158 | +<script id="easy-pie-chart-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/easy-pie-chart.js?ver=10.5.21"></script> | |
| 4159 | +<script id="steps-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/steps.js?ver=10.5.21"></script> | |
| 4160 | +<script id="lightbox-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/lightbox.js?ver=10.5.21"></script> | |
| 4161 | +<script id="ebor-scripts-wp-js-extra"> | |
| 4162 | +var stack_data = {"access_token":"replaceWithYourOwn","client_id":"replaceWithYourOwn","typed_speed":"100","map_marker":"https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/img/mapmarker.png","map_marker_title":"Stack","lightbox_text":"Image %1 of %2"}; | |
| 4163 | +//# sourceURL=ebor-scripts-wp-js-extra | |
| 4164 | +</script> | |
| 4165 | +<script id="ebor-scripts-wp-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/scripts_wp.js?ver=10.5.21"></script> | |
| 4166 | +<script id="ebor-scripts-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/scripts.js?ver=10.5.21"></script> | |
| 4167 | +<script id="wp-job-manager-job-application-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager/assets/dist/js/job-application.js?ver=a2e73d680f0b4392373b"></script> | |
| 4168 | +<script id="wp-emoji-settings" type="application/json"> | |
| 4169 | +{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://chum.carrieresante.gouv.qc.ca/wp-includes/js/wp-emoji-release.min.js?ver=7.0.4"}} | |
| 4170 | +</script> | |
| 4171 | +<script type="module"> | |
| 4172 | +/*! This file is auto-generated */ | |
| 4173 | +var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))}); | |
| 4174 | +//# sourceURL=https://chum.carrieresante.gouv.qc.ca/wp-includes/js/wp-emoji-loader.min.js | |
| 4175 | +</script> | |
| 4176 | +<script></script></body> | |
| 4177 | +</html> | |
| 4178 | +<!-- Cached by WP-Optimize (gzip) - https://teamupdraft.com/wp-optimize/ - Last modified: 18 August 2026 17h28 (America/Toronto UTC:-5) --> | |
added
tests/fixtures/chum/171380ec67cdfd7bdb17.html
+4135 −0
@@ -0,0 +1,4135 @@ | ||
| 1 | +<!doctype html> | |
| 2 | +<html lang="fr-FR"> | |
| 3 | + | |
| 4 | +<head> | |
| 5 | + <meta charset="UTF-8"> | |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| 7 | + <meta http-equiv="X-UA-Compatible" content="IE=edge, IE=11, IE=10"> | |
| 8 | + <link rel="pingback" href="https://chum.carrieresante.gouv.qc.ca/xmlrpc.php" /> | |
| 9 | + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> | |
| 10 | +<link rel="alternate" hreflang="fr" href="https://chum.carrieresante.gouv.qc.ca/poste/candidat-e-a-l-exercice-de-la-profession-infirmiere-3/" /> | |
| 11 | +<link rel="alternate" hreflang="x-default" href="https://chum.carrieresante.gouv.qc.ca/poste/candidat-e-a-l-exercice-de-la-profession-infirmiere-3/" /> | |
| 12 | +<script id="cookieyes" type="text/javascript" src="https://cdn-cookieyes.com/client_data/a02c54dd1258cab5a44db8ca534bda4c/script.js"></script> | |
| 13 | + <!-- This site is optimized with the Yoast SEO plugin v27.9 - https://yoast.com/product/yoast-seo-wordpress/ --> | |
| 14 | + <title>Candidat(e) à l’exercice de la profession infirmière - CHUM</title> | |
| 15 | + <link rel="canonical" href="https://chum.carrieresante.gouv.qc.ca/poste/candidat-e-a-l-exercice-de-la-profession-infirmiere-3/" /> | |
| 16 | + <meta property="og:locale" content="fr_FR" /> | |
| 17 | + <meta property="og:type" content="article" /> | |
| 18 | + <meta property="og:title" content="Candidat(e) à l’exercice de la profession infirmière - CHUM" /> | |
| 19 | + <meta property="og:description" content="Mandat Le CHUM est un hôpital universitaire à la fois innovant et humain, au service des patient(es) et du réseau. Il offre..." /> | |
| 20 | + <meta property="og:url" content="https://chum.carrieresante.gouv.qc.ca/poste/candidat-e-a-l-exercice-de-la-profession-infirmiere-3/" /> | |
| 21 | + <meta property="og:site_name" content="CHUM" /> | |
| 22 | + <meta property="article:modified_time" content="2026-07-10T17:40:08+00:00" /> | |
| 23 | + <meta name="twitter:card" content="summary_large_image" /> | |
| 24 | + <meta name="twitter:label1" content="Durée de lecture estimée" /> | |
| 25 | + <meta name="twitter:data1" content="3 minutes" /> | |
| 26 | + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/candidat-e-a-l-exercice-de-la-profession-infirmiere-3\/","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/candidat-e-a-l-exercice-de-la-profession-infirmiere-3\/","name":"Candidat(e) à l’exercice de la profession infirmière - CHUM","isPartOf":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#website"},"datePublished":"2026-07-10T04:00:00+00:00","dateModified":"2026-07-10T17:40:08+00:00","breadcrumb":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/candidat-e-a-l-exercice-de-la-profession-infirmiere-3\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/candidat-e-a-l-exercice-de-la-profession-infirmiere-3\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/candidat-e-a-l-exercice-de-la-profession-infirmiere-3\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/chum.carrieresante.gouv.qc.ca\/"},{"@type":"ListItem","position":2,"name":"Candidat(e) à l’exercice de la profession infirmière"}]},{"@type":"WebSite","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#website","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/","name":"Makila.ai","description":"Carrière en santé","publisher":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/chum.carrieresante.gouv.qc.ca\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#organization","name":"Services Makila inc.","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#\/schema\/logo\/image\/","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/wp-content\/uploads\/2020\/10\/Logo-Makila-Dark-150.png","contentUrl":"https:\/\/chum.carrieresante.gouv.qc.ca\/wp-content\/uploads\/2020\/10\/Logo-Makila-Dark-150.png","width":150,"height":43,"caption":"Services Makila inc."},"image":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/makila-ai\/"]}]}</script> | |
| 27 | + <!-- / Yoast SEO plugin. --> | |
| 28 | + | |
| 29 | + | |
| 30 | +<link rel='dns-prefetch' href='//static.addtoany.com' /> | |
| 31 | +<link rel='dns-prefetch' href='//code.jquery.com' /> | |
| 32 | +<link rel='dns-prefetch' href='//use.fontawesome.com' /> | |
| 33 | +<link rel='dns-prefetch' href='//fonts.googleapis.com' /> | |
| 34 | +<link href='https://fonts.gstatic.com' crossorigin rel='preconnect' /> | |
| 35 | +<link rel="alternate" type="application/rss+xml" title="CHUM » Flux" href="https://chum.carrieresante.gouv.qc.ca/feed/" /> | |
| 36 | +<link rel="alternate" type="application/rss+xml" title="CHUM » Flux des commentaires" href="https://chum.carrieresante.gouv.qc.ca/comments/feed/" /> | |
| 37 | +<link rel="alternate" type="application/rss+xml" title="CHUM » Candidat(e) à l’exercice de la profession infirmière Flux des commentaires" href="https://chum.carrieresante.gouv.qc.ca/poste/candidat-e-a-l-exercice-de-la-profession-infirmiere-3/feed/" /> | |
| 38 | +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://chum.carrieresante.gouv.qc.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fcandidat-e-a-l-exercice-de-la-profession-infirmiere-3%2F" /> | |
| 39 | +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://chum.carrieresante.gouv.qc.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fcandidat-e-a-l-exercice-de-la-profession-infirmiere-3%2F&format=xml" /> | |
| 40 | +<style id="wp-img-auto-sizes-contain-inline-css"> | |
| 41 | +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} | |
| 42 | +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */ | |
| 43 | +</style> | |
| 44 | +<link rel='stylesheet' id='reusablec-block-css-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/reusable-content-blocks/includes/css/reusablec-block.css?ver=7.0.4' media='all' /> | |
| 45 | +<style id="wp-emoji-styles-inline-css"> | |
| 46 | + | |
| 47 | + img.wp-smiley, img.emoji { | |
| 48 | + display: inline !important; | |
| 49 | + border: none !important; | |
| 50 | + box-shadow: none !important; | |
| 51 | + height: 1em !important; | |
| 52 | + width: 1em !important; | |
| 53 | + margin: 0 0.07em !important; | |
| 54 | + vertical-align: -0.1em !important; | |
| 55 | + background: none !important; | |
| 56 | + padding: 0 !important; | |
| 57 | + } | |
| 58 | +/*# sourceURL=wp-emoji-styles-inline-css */ | |
| 59 | +</style> | |
| 60 | +<style id="wp-block-library-inline-css"> | |
| 61 | +:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} | |
| 62 | +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */ | |
| 63 | +</style> | |
| 64 | +<style id="classic-theme-styles-inline-css"> | |
| 65 | +/*! This file is auto-generated */ | |
| 66 | +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} | |
| 67 | +/*# sourceURL=/wp-includes/css/classic-themes.min.css */ | |
| 68 | +</style> | |
| 69 | +<style id="wp-block-styles-placeholder-inline-css"> | |
| 70 | +:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the block styles printed at wp_footer." } | |
| 71 | +/*# sourceURL=wp-block-styles-placeholder-inline-css */ | |
| 72 | +</style> | |
| 73 | +<style id="font-awesome-svg-styles-default-inline-css"> | |
| 74 | +.svg-inline--fa { | |
| 75 | + display: inline-block; | |
| 76 | + height: 1em; | |
| 77 | + overflow: visible; | |
| 78 | + vertical-align: -.125em; | |
| 79 | +} | |
| 80 | +/*# sourceURL=font-awesome-svg-styles-default-inline-css */ | |
| 81 | +</style> | |
| 82 | +<link rel='stylesheet' id='font-awesome-svg-styles-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/font-awesome/v6.4.2/css/svg-with-js.css' media='all' /> | |
| 83 | +<style id="font-awesome-svg-styles-inline-css"> | |
| 84 | + .wp-block-font-awesome-icon svg::before, | |
| 85 | + .wp-rich-text-font-awesome-icon svg::before {content: unset;} | |
| 86 | +/*# sourceURL=font-awesome-svg-styles-inline-css */ | |
| 87 | +</style> | |
| 88 | +<style id="wp-global-styles-placeholder-inline-css"> | |
| 89 | +:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the global-styles printed at wp_footer." } | |
| 90 | +/*# sourceURL=wp-global-styles-placeholder-inline-css */ | |
| 91 | +</style> | |
| 92 | +<link rel='stylesheet' id='contact-form-7-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.6' media='all' /> | |
| 93 | +<link rel='stylesheet' id='select2-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager/assets/lib/select2/select2.min.css?ver=4.0.10' media='all' /> | |
| 94 | +<link rel='stylesheet' id='wp-job-manager-frontend-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager/assets/dist/css/frontend.css?ver=dfd3b8d2ce68f47df57d' media='all' /> | |
| 95 | +<link rel='stylesheet' id='wpml-legacy-horizontal-list-0-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/sitepress-multilingual-cms/templates/language-switchers/legacy-list-horizontal/style.min.css?ver=1' media='all' /> | |
| 96 | +<link rel='stylesheet' id='wpml-menu-item-0-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/sitepress-multilingual-cms/templates/language-switchers/menu-item/style.min.css?ver=1' media='all' /> | |
| 97 | +<link rel='stylesheet' id='job-alerts-frontend-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager-alerts/assets/dist/css/frontend.css?ver=3.2.0' media='all' /> | |
| 98 | +<link rel='stylesheet' id='job-alerts-frontend-default-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager-alerts/assets/dist/css/frontend.default.css?ver=3.2.0' media='all' /> | |
| 99 | +<link rel='stylesheet' id='jquery-ui-css' href='//code.jquery.com/ui/1.13.3/themes/smoothness/jquery-ui.min.css?ver=1.13.3' media='all' /> | |
| 100 | +<link rel='stylesheet' id='jm-application-deadline-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager-application-deadline/assets/dist/css/frontend.css?ver=1.3.0' media='' /> | |
| 101 | +<link rel='stylesheet' id='stack-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style.css?ver=7.0.4' media='all' /> | |
| 102 | +<link rel='stylesheet' id='stack-child-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack-child/style.css?ver=10.5.21' media='all' /> | |
| 103 | +<link rel='stylesheet' id='font-awesome-official-css' href='https://use.fontawesome.com/releases/v6.4.2/css/all.css' media='all' integrity="sha384-blOohCVdhjmtROpu8+CfTnUWham9nkX7P7OZQMst+RUnhtoY/9qemFAkIKOYxDI3" crossorigin="anonymous" /> | |
| 104 | +<link rel='stylesheet' id='addtoany-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/add-to-any/addtoany.min.css?ver=1.16' media='all' /> | |
| 105 | +<link rel='stylesheet' id='cf7cf-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/cf7-conditional-fields/style.css?ver=2.7.8' media='all' /> | |
| 106 | +<link rel='stylesheet' id='ebor-google-font-css' href='//fonts.googleapis.com/css?family=Lato%3A200%2C300%2C400%2C400i%2C500%2C600%2C700%7CMerriweather%3A300%2C300i%7CMaterial+Icons&ver=10.5.21' media='all' /> | |
| 107 | +<link rel='stylesheet' id='bootstrap-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/bootstrap.css?ver=10.5.21' media='all' /> | |
| 108 | +<link rel='stylesheet' id='ebor-icons-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/icons.css?ver=10.5.21' media='all' /> | |
| 109 | +<link rel='stylesheet' id='ebor-plugins-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/plugins.css?ver=10.5.21' media='all' /> | |
| 110 | +<link rel='stylesheet' id='ebor-theme-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/theme.css?ver=10.5.21' media='all' /> | |
| 111 | +<link rel='stylesheet' id='ebor-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack-child/style.css?ver=10.5.21' media='all' /> | |
| 112 | +<style id="ebor-style-inline-css"> | |
| 113 | + | |
| 114 | + .btn--primary .btn__text, .btn--primary:visited .btn__text { | |
| 115 | + color: #000000; | |
| 116 | + } | |
| 117 | + input[type].btn--primary, | |
| 118 | + .pos-fixed.bar--transparent.bg--primary, | |
| 119 | + .ebor-cart-count, .woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover { | |
| 120 | + background: #16375e; | |
| 121 | + } | |
| 122 | + .pos-fixed.bar--transparent.bg--secondary { | |
| 123 | + background: #FAFAFA; | |
| 124 | + } | |
| 125 | + .pos-fixed.bar--transparent.bg--dark { | |
| 126 | + background: #252525; | |
| 127 | + } | |
| 128 | + .pos-fixed.bar--transparent.bg--primary-1 { | |
| 129 | + background: #34acaa; | |
| 130 | + } | |
| 131 | + .bg--white h1, .bg--white h2, .bg--white h3, .bg--white h4, .bg--white h5, .bg--white h6, .bg--white i, .mobile-header .cart-link { | |
| 132 | + color: #252525; | |
| 133 | + } | |
| 134 | + @media all and (max-width:767px) { | |
| 135 | + .bar.bg--dark.bar--mobile-sticky[data-scroll-class*="fixed"].pos-fixed, | |
| 136 | + .bar.bg--dark.bar--mobile-sticky[data-scroll-class*="fixed"]+.bar.pos-fixed { | |
| 137 | + background: #252525; | |
| 138 | + } | |
| 139 | + .bar.bg--secondary.bar--mobile-sticky[data-scroll-class*="fixed"].pos-fixed, | |
| 140 | + .bar.bg--secondary.bar--mobile-sticky[data-scroll-class*="fixed"]+.bar.pos-fixed { | |
| 141 | + background: #FAFAFA; | |
| 142 | + } | |
| 143 | + } | |
| 144 | + .thumbnails-slider .thumbnail-trigger.active img { | |
| 145 | + border: 1px solid #16375e; | |
| 146 | + } | |
| 147 | + .menu-horizontal > li > a, .menu-horizontal > li > span, .menu-horizontal > li > .modal-instance > .modal-trigger { | |
| 148 | + font-size: 1em; | |
| 149 | + } | |
| 150 | + .woocommerce #respond input#submit.alt, | |
| 151 | + .woocommerce a.button.alt, | |
| 152 | + .woocommerce button.button.alt, | |
| 153 | + .woocommerce input.button.alt, | |
| 154 | + .woocommerce #respond input#submit, | |
| 155 | + .woocommerce a.button, | |
| 156 | + .woocommerce button.button, | |
| 157 | + .woocommerce input.button { | |
| 158 | + background: #16375e; | |
| 159 | + color: #fff; | |
| 160 | + transition: 0.1s linear; | |
| 161 | + } | |
| 162 | + .woocommerce #respond input#submit.alt:hover, | |
| 163 | + .woocommerce a.button.alt:hover, | |
| 164 | + .woocommerce button.button.alt:hover, | |
| 165 | + .woocommerce input.button.alt:hover, | |
| 166 | + .woocommerce #respond input#submit:hover, | |
| 167 | + .woocommerce a.button:hover, | |
| 168 | + .woocommerce button.button:hover, | |
| 169 | + .woocommerce input.button:hover { | |
| 170 | + color: #fff; | |
| 171 | + opacity: 0.9; | |
| 172 | + background: #16375e; | |
| 173 | + transform: translate3d(0, -2px, 0); | |
| 174 | + -webkit-transform: translate3d(0, -2px, 0); | |
| 175 | + } | |
| 176 | + | |
| 177 | + .menu-horizontal > li:not(:hover) > a, .menu-horizontal > li:not(:hover) > span, | |
| 178 | + .menu-horizontal > li:not(:hover) > .modal-instance > .modal-trigger { | |
| 179 | + opacity: 0.85 | |
| 180 | + } | |
| 181 | + .menu-vertical li:not(:hover):not(.dropdown--active) { | |
| 182 | + opacity: .75; | |
| 183 | + } | |
| 184 | + | |
| 185 | +/*# sourceURL=ebor-style-inline-css */ | |
| 186 | +</style> | |
| 187 | +<link rel='stylesheet' id='ebor-iconsmind-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/iconsmind.css?ver=10.5.21' media='all' /> | |
| 188 | +<link rel='stylesheet' id='font-awesome-official-v4shim-css' href='https://use.fontawesome.com/releases/v6.4.2/css/v4-shims.css' media='all' integrity="sha384-IqMDcR2qh8kGcGdRrxwop5R2GiUY5h8aDR/LhYxPYiXh3sAAGGDkFvFqWgFvTsTd" crossorigin="anonymous" /> | |
| 189 | +<script id="addtoany-core-js-before"> | |
| 190 | +window.a2a_config=window.a2a_config||{};a2a_config.callbacks=[];a2a_config.overlays=[];a2a_config.templates={};a2a_localize = { | |
| 191 | + Share: "Partager", | |
| 192 | + Save: "Enregistrer", | |
| 193 | + Subscribe: "S'abonner", | |
| 194 | + Email: "E-mail", | |
| 195 | + Bookmark: "Marque-page", | |
| 196 | + ShowAll: "Montrer tout", | |
| 197 | + ShowLess: "Montrer moins", | |
| 198 | + FindServices: "Trouver des service(s)", | |
| 199 | + FindAnyServiceToAddTo: "Trouver instantanément des services à ajouter à", | |
| 200 | + PoweredBy: "Propulsé par", | |
| 201 | + ShareViaEmail: "Partager par e-mail", | |
| 202 | + SubscribeViaEmail: "S’abonner par e-mail", | |
| 203 | + BookmarkInYourBrowser: "Ajouter un signet dans votre navigateur", | |
| 204 | + BookmarkInstructions: "Appuyez sur Ctrl+D ou \u2318+D pour mettre cette page en signet", | |
| 205 | + AddToYourFavorites: "Ajouter à vos favoris", | |
| 206 | + SendFromWebOrProgram: "Envoyer depuis n’importe quelle adresse e-mail ou logiciel e-mail", | |
| 207 | + EmailProgram: "Programme d’e-mail", | |
| 208 | + More: "Plus…", | |
| 209 | + ThanksForSharing: "Merci de partager !", | |
| 210 | + ThanksForFollowing: "Merci de nous suivre !" | |
| 211 | +}; | |
| 212 | + | |
| 213 | + | |
| 214 | +//# sourceURL=addtoany-core-js-before | |
| 215 | +</script> | |
| 216 | +<script id="addtoany-core-js" defer src="https://static.addtoany.com/menu/page.js"></script> | |
| 217 | +<script id="jquery-core-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script> | |
| 218 | +<script id="jquery-migrate-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script> | |
| 219 | +<script id="addtoany-jquery-js" defer src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/add-to-any/addtoany.min.js?ver=1.1"></script> | |
| 220 | +<script id="wpml-browser-redirect-js-extra"> | |
| 221 | +var wpml_browser_redirect_params = {"pageLanguage":"fr","languageUrls":{"fr_fr":"https://chum.carrieresante.gouv.qc.ca/poste/candidat-e-a-l-exercice-de-la-profession-infirmiere-3/","fr":"https://chum.carrieresante.gouv.qc.ca/poste/candidat-e-a-l-exercice-de-la-profession-infirmiere-3/"},"cookie":{"name":"_icl_visitor_lang_js","domain":"chum.carrieresante.gouv.qc.ca","path":"/","expiration":24}}; | |
| 222 | +//# sourceURL=wpml-browser-redirect-js-extra | |
| 223 | +</script> | |
| 224 | +<script id="wpml-browser-redirect-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/sitepress-multilingual-cms/dist/js/browser-redirect/app.js?ver=495000"></script> | |
| 225 | +<script></script><link rel="https://api.w.org/" href="https://chum.carrieresante.gouv.qc.ca/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://chum.carrieresante.gouv.qc.ca/wp-json/wp/v2/job-listings/54067" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://chum.carrieresante.gouv.qc.ca/xmlrpc.php?rsd" /> | |
| 226 | +<meta name="generator" content="WordPress 7.0.4" /> | |
| 227 | +<link rel='shortlink' href='https://chum.carrieresante.gouv.qc.ca/?p=54067' /> | |
| 228 | +<meta name="generator" content="WPML ver:4.9.5 stt:1,4;" /> | |
| 229 | +<meta name="generator" content="Elementor 4.1.4; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"> | |
| 230 | + <style> | |
| 231 | + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 232 | + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 233 | + background-image: none !important; | |
| 234 | + } | |
| 235 | + @media screen and (max-height: 1024px) { | |
| 236 | + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 237 | + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 238 | + background-image: none !important; | |
| 239 | + } | |
| 240 | + } | |
| 241 | + @media screen and (max-height: 640px) { | |
| 242 | + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 243 | + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 244 | + background-image: none !important; | |
| 245 | + } | |
| 246 | + } | |
| 247 | + </style> | |
| 248 | + <meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/> | |
| 249 | +<script type="text/javascript" id="sns_global_scripts_in_head">// JavaScript to handle the "Select All" for Statut De L'Emploi | |
| 250 | +jQuery(document).ready(function($) { | |
| 251 | + $('#select-all-StatutDeLEmploi').click(function(e) { | |
| 252 | + e.preventDefault(); | |
| 253 | + var checkboxGroup = $(this).closest('form').find('[name="StatutDeLEmploi[]"]'); | |
| 254 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 255 | + checkboxGroup.prop('checked', isChecked); | |
| 256 | + if (isChecked) { | |
| 257 | + $(this).text('Déselectionner tout'); | |
| 258 | + } else { | |
| 259 | + $(this).text('Sélectionner tout'); | |
| 260 | + } | |
| 261 | + }); | |
| 262 | + | |
| 263 | + $('[name="StatutDeLEmploi[]"]').change(function() { | |
| 264 | + var allChecked = $('[name="StatutDeLEmploi[]"]:checked').length === $('[name="StatutDeLEmploi[]"]').length; | |
| 265 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 266 | + $('#select-all-StatutDeLEmploi').text(linkText); | |
| 267 | + }); | |
| 268 | +}); | |
| 269 | +// JavaScript to handle the "Select All" for Territoires | |
| 270 | +jQuery(document).ready(function($) { | |
| 271 | + $('#select-all-Territoires').click(function(e) { | |
| 272 | + e.preventDefault(); | |
| 273 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires[]"]'); | |
| 274 | + | |
| 275 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 276 | + checkboxGroup.prop('checked', isChecked); | |
| 277 | + | |
| 278 | + if (isChecked) { | |
| 279 | + $(this).text('Déselectionner tout'); | |
| 280 | + } else { | |
| 281 | + $(this).text('Sélectionner tout'); | |
| 282 | + } | |
| 283 | + }); | |
| 284 | + | |
| 285 | + | |
| 286 | + $('[name="Territoires[]"]').change(function() { | |
| 287 | + var allChecked = $('[name="Territoires[]"]:checked').length === $('[name="Territoires[]"]').length; | |
| 288 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 289 | + $('#select-all-Territoires').text(linkText); | |
| 290 | + }); | |
| 291 | +}); | |
| 292 | +// JavaScript to handle the "Select All" for Territoires2 | |
| 293 | +jQuery(document).ready(function($) { | |
| 294 | + $('#select-all-Territoires2').click(function(e) { | |
| 295 | + e.preventDefault(); // Prevent the default link behavior | |
| 296 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires2[]"]'); | |
| 297 | + | |
| 298 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 299 | + checkboxGroup.prop('checked', isChecked); | |
| 300 | + | |
| 301 | + if (isChecked) { | |
| 302 | + $(this).text('Déselectionner tout'); | |
| 303 | + } else { | |
| 304 | + $(this).text('Sélectionner tout'); | |
| 305 | + } | |
| 306 | + }); | |
| 307 | + | |
| 308 | + $('[name="Territoires2[]"]').change(function() { | |
| 309 | + var allChecked = $('[name="Territoires2[]"]:checked').length === $('[name="Territoires2[]"]').length; | |
| 310 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 311 | + $('#select-all-Territoires2').text(linkText); | |
| 312 | + }); | |
| 313 | +}); | |
| 314 | + | |
| 315 | +// JavaScript to handle the "Select All" for Territoires3 | |
| 316 | +jQuery(document).ready(function($) { | |
| 317 | + $('#select-all-Territoires3').click(function(e) { | |
| 318 | + e.preventDefault(); // Prevent the default link behavior | |
| 319 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires3[]"]'); | |
| 320 | + | |
| 321 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 322 | + checkboxGroup.prop('checked', isChecked); | |
| 323 | + | |
| 324 | + if (isChecked) { | |
| 325 | + $(this).text('Déselectionner tout'); | |
| 326 | + } else { | |
| 327 | + $(this).text('Sélectionner tout'); | |
| 328 | + } | |
| 329 | + }); | |
| 330 | + | |
| 331 | + $('[name="Territoires3[]"]').change(function() { | |
| 332 | + var allChecked = $('[name="Territoires3[]"]:checked').length === $('[name="Territoires3[]"]').length; | |
| 333 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 334 | + $('#select-all-Territoires3').text(linkText); | |
| 335 | + }); | |
| 336 | +}); | |
| 337 | + | |
| 338 | +// JavaScript to handle the "Select All" for Territoires4 | |
| 339 | +jQuery(document).ready(function($) { | |
| 340 | + $('#select-all-Territoires4').click(function(e) { | |
| 341 | + e.preventDefault(); // Prevent the default link behavior | |
| 342 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires4[]"]'); | |
| 343 | + | |
| 344 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 345 | + checkboxGroup.prop('checked', isChecked); | |
| 346 | + | |
| 347 | + if (isChecked) { | |
| 348 | + $(this).text('Déselectionner tout'); | |
| 349 | + } else { | |
| 350 | + $(this).text('Sélectionner tout'); | |
| 351 | + } | |
| 352 | + }); | |
| 353 | + | |
| 354 | + $('[name="Territoires4[]"]').change(function() { | |
| 355 | + var allChecked = $('[name="Territoires4[]"]:checked').length === $('[name="Territoires4[]"]').length; | |
| 356 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 357 | + $('#select-all-Territoires4').text(linkText); | |
| 358 | + }); | |
| 359 | +}); | |
| 360 | + | |
| 361 | +// JavaScript to set the checkboxes 'StatutDeLEmploi' and 'Categories' to be required. | |
| 362 | +document.addEventListener('wpcf7submit', function(event) { | |
| 363 | + if ('StatutDeLEmploi' in event.detail.inputs) { | |
| 364 | + if (event.detail.inputs['StatutDeLEmploi'].checked === false) { | |
| 365 | + alert('Pour vous abonner, vous devez sélectionner au moins un élément de la section \"statut de l\'emploi\"'); | |
| 366 | + event.preventDefault(); | |
| 367 | + } | |
| 368 | + } | |
| 369 | +}, false); | |
| 370 | +//Renommer Rechercher des offres d’emploi par Filtrer les résultats | |
| 371 | +jQuery(document).ready(function($) { | |
| 372 | + var submitButton = $('.search_submit input[type="submit"]'); | |
| 373 | + submitButton.attr('value', 'Filtrer les résultats'); | |
| 374 | +}); | |
| 375 | + | |
| 376 | +// Get all text nodes in the document | |
| 377 | +function getAllTextNodes(element) { | |
| 378 | + const textNodes = []; | |
| 379 | + if (element.nodeType === Node.TEXT_NODE) { | |
| 380 | + textNodes.push(element); | |
| 381 | + } else { | |
| 382 | + const children = element.childNodes; | |
| 383 | + for (let i = 0; i < children.length; i++) { | |
| 384 | + textNodes.push(...getAllTextNodes(children[i])); | |
| 385 | + } | |
| 386 | + } | |
| 387 | + return textNodes; | |
| 388 | +} | |
| 389 | + | |
| 390 | +//remove overlay from hero slider | |
| 391 | +document.addEventListener('DOMContentLoaded', function () { | |
| 392 | + var elements = document.querySelectorAll('.imagebg[data-overlay="4"]'); | |
| 393 | + elements.forEach(function (element) { | |
| 394 | + element.removeAttribute('data-overlay'); | |
| 395 | + }); | |
| 396 | +}); | |
| 397 | + | |
| 398 | +window.addEventListener('DOMContentLoaded', function () { | |
| 399 | +document.querySelector('.scroll-right').onclick = () => { | |
| 400 | + document.querySelector('.job-listing-wrapper').scrollBy({ | |
| 401 | + left: 300, | |
| 402 | + behavior: 'smooth' | |
| 403 | + }); | |
| 404 | +}; | |
| 405 | + | |
| 406 | +document.querySelector('.scroll-left').onclick = () => { | |
| 407 | + document.querySelector('.job-listing-wrapper').scrollBy({ | |
| 408 | + left: -300, | |
| 409 | + behavior: 'smooth' | |
| 410 | + }); | |
| 411 | +}; | |
| 412 | + | |
| 413 | +}); | |
| 414 | + | |
| 415 | +document.addEventListener('DOMContentLoaded', function() { | |
| 416 | + document.querySelectorAll('strong').forEach(function(el) { | |
| 417 | + if (el.textContent.trim() === 'Partagez :') { | |
| 418 | + el.classList.add('is-partagez'); | |
| 419 | + } | |
| 420 | + }); | |
| 421 | +}); | |
| 422 | +</script><link rel="icon" href="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-32x32.png" sizes="32x32" /> | |
| 423 | +<link rel="icon" href="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-192x192.png" sizes="192x192" /> | |
| 424 | +<link rel="apple-touch-icon" href="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-180x180.png" /> | |
| 425 | +<meta name="msapplication-TileImage" content="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-270x270.png" /> | |
| 426 | +<style id="wp-custom-css"> | |
| 427 | +body { | |
| 428 | + font-size: 1.15em; | |
| 429 | + font-weight: 400; | |
| 430 | + color: #000000; | |
| 431 | +} | |
| 432 | + | |
| 433 | +p, .p { | |
| 434 | + font-size: 1.1em; | |
| 435 | + line-height: 1.4em; | |
| 436 | + font-weight: 500; | |
| 437 | + margin-bottom: 1em; | |
| 438 | +} | |
| 439 | + | |
| 440 | +b, .b, strong, .strong { | |
| 441 | + font-weight: 700; | |
| 442 | +} | |
| 443 | + | |
| 444 | +a, a:hover { | |
| 445 | + color: #004071; | |
| 446 | + text-decoration-line: none; | |
| 447 | +} | |
| 448 | + | |
| 449 | +p a, span a, label a { | |
| 450 | + text-decoration-line: none; | |
| 451 | +} | |
| 452 | + | |
| 453 | +.wpb_wrapper a { | |
| 454 | + color: #87CEEB; | |
| 455 | + text-decoration-line: none; | |
| 456 | +} | |
| 457 | + | |
| 458 | +ul > li { | |
| 459 | + font-size: 1.1em; | |
| 460 | + line-height: 1.2em; | |
| 461 | + list-style: disc; | |
| 462 | + list-style-position: outside; | |
| 463 | + margin-left: 20px; | |
| 464 | + padding-left: 0px; | |
| 465 | + padding-bottom: 10px; | |
| 466 | +} | |
| 467 | + | |
| 468 | +.wpb_text_column ul li { | |
| 469 | + list-style-type: disc; | |
| 470 | + list-style-position: outside; | |
| 471 | + margin-left: 5px; | |
| 472 | +} | |
| 473 | + | |
| 474 | +.post-content ul:not(.tabs-content):not(.slides), .wpb_text_column ul, ul.accordion ul, ul.tabs-content ul { | |
| 475 | + list-style-type: disc; | |
| 476 | + list-style-position: outside; | |
| 477 | + margin-left: 25px; | |
| 478 | +} | |
| 479 | + | |
| 480 | +h1, .h1 { | |
| 481 | + font-size: 2.6em; | |
| 482 | + line-height: 1.6em; | |
| 483 | + color: #16375E; | |
| 484 | + font-weight: bold !important; | |
| 485 | +} | |
| 486 | + | |
| 487 | +h2, .h2 { | |
| 488 | + font-size: 40px; | |
| 489 | + line-height: 1.4em; | |
| 490 | + font-weight:bold; | |
| 491 | +} | |
| 492 | + | |
| 493 | +h3, .h3 { | |
| 494 | + font-size: 1.3em; | |
| 495 | + line-height: 1.4em; | |
| 496 | + font-weight: 400; | |
| 497 | + margin-bottom: 0.5em; | |
| 498 | +} | |
| 499 | + | |
| 500 | +h4, .h4 { | |
| 501 | + font-size: 1.2em; | |
| 502 | + line-height: 1em; | |
| 503 | + font-weight: 500; | |
| 504 | +} | |
| 505 | + | |
| 506 | +h5, .h5 { | |
| 507 | + font-size: 1em; | |
| 508 | + line-height: 1.3em; | |
| 509 | + font-weight: 400; | |
| 510 | +} | |
| 511 | + | |
| 512 | +.alignlefticon { | |
| 513 | + float: left; | |
| 514 | + margin: 0 10px 0 0!important; | |
| 515 | +} | |
| 516 | + | |
| 517 | +.vertitop .pos-vertical-center { | |
| 518 | + top: 195px; | |
| 519 | +} | |
| 520 | + | |
| 521 | +.vertitop-faq .pos-vertical-center { | |
| 522 | + top: 140px; | |
| 523 | +} | |
| 524 | + | |
| 525 | +/* HEADER MENU */ | |
| 526 | +/* Header horizontal menu underline */ | |
| 527 | +.menu-horizontal>li>a:hover { | |
| 528 | + border-bottom:none; | |
| 529 | +} | |
| 530 | + | |
| 531 | +.menu-horizontal li:not(:last-child) { | |
| 532 | + margin-right: 1em; | |
| 533 | +} | |
| 534 | + | |
| 535 | +@media (min-width: 990px){ | |
| 536 | + .menu-horizontal li:not(:last-child) { | |
| 537 | + margin-right: 50px; | |
| 538 | + } | |
| 539 | +} | |
| 540 | + | |
| 541 | +.header--top-bar .type--fade, .header--top-bar a { | |
| 542 | + opacity: 1; | |
| 543 | + color: red; | |
| 544 | +} | |
| 545 | + | |
| 546 | +.btn--demo .btn__text{ | |
| 547 | + border-color: #34acaa !important; | |
| 548 | + color:#fff !important; | |
| 549 | +} | |
| 550 | + | |
| 551 | +/* Header drop down menu style */ | |
| 552 | +.dropdowns--hover .dropdown:hover>.dropdown__container>.container>.row>.dropdown__content { | |
| 553 | + position:absolute; | |
| 554 | + left:400px; | |
| 555 | + border-top:3px solid #17355f; | |
| 556 | + width: auto !important; | |
| 557 | +} | |
| 558 | + | |
| 559 | +.dropdowns--hover .dropdown:hover>.dropdown__container>.container>.row>.dropdown__content a:hover{ | |
| 560 | + color: #17355f !important; | |
| 561 | +} | |
| 562 | + | |
| 563 | +.menu-vertical li { | |
| 564 | + font-size: 0.9em; | |
| 565 | + font-weight: 400; | |
| 566 | + color: #666; | |
| 567 | + list-style: none; | |
| 568 | +} | |
| 569 | + | |
| 570 | +/* WPFront bar close button */ | |
| 571 | +.wpfront-close { | |
| 572 | + border: 1px solid #000000 !important; | |
| 573 | + background-color: #ffd600 !important; | |
| 574 | + color: #000000 !important; | |
| 575 | +} | |
| 576 | + | |
| 577 | +#wpfront-notification-bar div.wpfront-close { | |
| 578 | + position: absolute; | |
| 579 | + top: 11px; | |
| 580 | + right: 10px; | |
| 581 | + font-size: 11px; | |
| 582 | + padding: 8px 4px; | |
| 583 | + -webkit-border-radius: 2px; | |
| 584 | + -moz-border-radius: 2px; | |
| 585 | + border-radius: 2px; | |
| 586 | +} | |
| 587 | + | |
| 588 | +/* HEADER HERO CENTER ELEMENTS */ | |
| 589 | +.row-fixed-width { | |
| 590 | + max-width:1170px; | |
| 591 | + margin: 0 auto; | |
| 592 | +} | |
| 593 | + | |
| 594 | +.header-titre { | |
| 595 | + color: #FFF; | |
| 596 | +} | |
| 597 | + | |
| 598 | +/* CONTENT BOX STYLING */ | |
| 599 | +.lien-boite { | |
| 600 | + background-color:#87CEEB; | |
| 601 | + margin-top: 2em; | |
| 602 | + color: #000000; | |
| 603 | + padding:10px; | |
| 604 | + | |
| 605 | +} | |
| 606 | + | |
| 607 | +.solbox { | |
| 608 | + font-size: 0.9em; | |
| 609 | + line-height: 1em; | |
| 610 | + font-weight: 400; | |
| 611 | + margin-bottom: 1em; | |
| 612 | + text-align: left; | |
| 613 | +} | |
| 614 | + | |
| 615 | +/* Logo caroussel */ | |
| 616 | +.vc_row .vc_column-gap-30 { | |
| 617 | + margin-left: -10px; | |
| 618 | + margin-right: -10px; | |
| 619 | +} | |
| 620 | + | |
| 621 | +/* Ligne titre */ | |
| 622 | +.floatClear { | |
| 623 | + clear: both; | |
| 624 | +} | |
| 625 | +#wrapper { | |
| 626 | + text-align: center; | |
| 627 | + position: relative; | |
| 628 | +} | |
| 629 | +#wrapper .line { | |
| 630 | + border-bottom: 2px solid #87CEEB; | |
| 631 | + position: absolute; | |
| 632 | + width: 100%; | |
| 633 | + top: 15px; | |
| 634 | +} | |
| 635 | +#wrapper .textbox { | |
| 636 | + position: absolute; | |
| 637 | + width: 100%; | |
| 638 | +} | |
| 639 | +#wrapper .textbox .text { | |
| 640 | + background-color: white; | |
| 641 | + margin: 0px auto; | |
| 642 | + padding: 0px 30px; | |
| 643 | + text-align: center; | |
| 644 | + display: inline; | |
| 645 | + font-size: 24px; | |
| 646 | +} | |
| 647 | + | |
| 648 | +/* Remove white bar in header on IE11 */ | |
| 649 | +.nav-container { | |
| 650 | + min-height: 0px !important; | |
| 651 | +} | |
| 652 | + | |
| 653 | +/* box shadow */ | |
| 654 | +.box-shadow { | |
| 655 | + box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.07); | |
| 656 | +} | |
| 657 | +.no-box-shadow { | |
| 658 | + box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.07); | |
| 659 | +} | |
| 660 | + | |
| 661 | +/*.wpb_wrapper .col-sm-4 .vc_column-inner { | |
| 662 | +box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.07); | |
| 663 | +} */ | |
| 664 | + | |
| 665 | +.featured-news { | |
| 666 | + padding-top: 0px; | |
| 667 | + padding-bottom: 0px; | |
| 668 | + padding-right: 0px; | |
| 669 | +} | |
| 670 | + | |
| 671 | +.feature .boxed { | |
| 672 | + padding: 20px 10px 10px 10px; | |
| 673 | +} | |
| 674 | + | |
| 675 | +/* Top image in boxes */ | |
| 676 | +.top-radius .elementor-image-box-img .vc_single_image-img img { | |
| 677 | + border-radius: 20px 20px 0 0; | |
| 678 | +} | |
| 679 | + | |
| 680 | +.wpb_single_image .vc_single_image-wrapper.vc_box_rounded, .wpb_single_image .vc_single_image-wrapper.vc_box_rounded img { | |
| 681 | + border-radius: 10px 10px 0 0; | |
| 682 | +} | |
| 683 | + | |
| 684 | +.border--round { | |
| 685 | + border-radius: 10px; | |
| 686 | +} | |
| 687 | + | |
| 688 | +/* .all-radius .wpb_single_image .vc_single_image-wrapper.vc_box_rounded, .wpb_single_image .vc_single_image-wrapper.vc_box_rounded img { | |
| 689 | +border-radius: 10px 10px 10px 10px; | |
| 690 | +box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.07); | |
| 691 | +} */ | |
| 692 | + | |
| 693 | +/* Custom Page Element */ | |
| 694 | +.vc_custom_1602515817184 { | |
| 695 | + padding-top: 20px; | |
| 696 | + padding-bottom: 20px; | |
| 697 | +} | |
| 698 | + | |
| 699 | +/* HEADER */ | |
| 700 | +/* Header Logo */ | |
| 701 | +.bar .logo { | |
| 702 | + max-height: 90px; | |
| 703 | +} | |
| 704 | +@media (min-width: 1050px) { | |
| 705 | + .bar .logo { | |
| 706 | + margin-top: -49px; | |
| 707 | + } | |
| 708 | +} | |
| 709 | +@media (max-width: 1050px) { | |
| 710 | + .bar .logo { | |
| 711 | + margin-top: -10px; | |
| 712 | + } | |
| 713 | +} | |
| 714 | +.menu-item-home { | |
| 715 | + margin-top: 9px; | |
| 716 | + margin-right: 5px; | |
| 717 | +} | |
| 718 | + | |
| 719 | +/* Header horizontal menu style */ | |
| 720 | +.bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > a, .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > span { | |
| 721 | + color:#87CEEB; | |
| 722 | +} | |
| 723 | + | |
| 724 | +.bar-1 .menu-horizontal>li>.dropdown__trigger, .bar-1 .menu-horizontal>li>a { | |
| 725 | + font-size: 18px; | |
| 726 | + line-height: 2.166666666666667em; | |
| 727 | + text-transform: none; | |
| 728 | + font-weight: 600; | |
| 729 | + letter-spacing: .5px; | |
| 730 | + color: #0067a5; | |
| 731 | +} | |
| 732 | + | |
| 733 | +.dropdown > .dropdown__trigger:after{ | |
| 734 | + font-size: 20px; | |
| 735 | + bottom: -3px; | |
| 736 | +} | |
| 737 | + | |
| 738 | +.bar-1 .menu-horizontal>li>.dropdown__trigger:hover, .bar-1 .menu-horizontal>li>a:hover { | |
| 739 | + color: #004071; | |
| 740 | +} | |
| 741 | + | |
| 742 | +.menu-horizontal>li:not(:hover)>a, .menu-horizontal>li:not(:hover)>span, .menu-horizontal>li:not(:hover)>.modal-instance>.modal-trigger { | |
| 743 | + opacity: 1; | |
| 744 | +} | |
| 745 | + | |
| 746 | + | |
| 747 | +/* Mobile Menu */ | |
| 748 | + | |
| 749 | +@media (max-width: 768px){ | |
| 750 | + .menu-horizontal>li>a:hover { | |
| 751 | + color: #34ACAA !important; | |
| 752 | + } | |
| 753 | + .menu-horizontal li { | |
| 754 | + font-size: 0.9em; | |
| 755 | + font-weight: 400; | |
| 756 | + color: #666; | |
| 757 | + list-style: none; | |
| 758 | + } | |
| 759 | + .menu-vertical li { | |
| 760 | + font-size: 1.2em; | |
| 761 | + font-weight: 400; | |
| 762 | + color: #666; | |
| 763 | + list-style: none; | |
| 764 | + } | |
| 765 | + .btn--demo { | |
| 766 | + width: 25%; | |
| 767 | + } | |
| 768 | + /* Index F-H page logo positioning */ | |
| 769 | + .vertitop .pos-vertical-center { | |
| 770 | + top: -100px; | |
| 771 | + } | |
| 772 | + /* .wp-image-6925 { | |
| 773 | + margin-bottom: 60px; | |
| 774 | + } */ | |
| 775 | + .vertitop .pos-vertical-center h1 { | |
| 776 | + padding-top: 30px; | |
| 777 | + padding-bottom: 0px; | |
| 778 | + margin-bottom: -30px; | |
| 779 | + } | |
| 780 | + .mob400 p { | |
| 781 | + font-weight: 400; | |
| 782 | + } | |
| 783 | +} | |
| 784 | + | |
| 785 | +/* Header CTA button */ | |
| 786 | +.btn--sm { | |
| 787 | + padding-top: .2em; | |
| 788 | + padding-bottom: .2em; | |
| 789 | + padding-right: 1em; | |
| 790 | + padding-left: 1em; | |
| 791 | +} | |
| 792 | + | |
| 793 | +.btn, .btn a { | |
| 794 | + border-radius: 6px; | |
| 795 | + border: none; | |
| 796 | + border-width: 1px; | |
| 797 | + font-size: inherit; | |
| 798 | + line-height: 1.85714286em; | |
| 799 | +} | |
| 800 | + | |
| 801 | +.btn .btn__text { | |
| 802 | + color: #FFF; | |
| 803 | + font-weight: 600; | |
| 804 | + font-size: 20px; | |
| 805 | + font-family:'Gotham',sans-serif; | |
| 806 | +} | |
| 807 | + | |
| 808 | +.btn--demo, .btn__text a { | |
| 809 | + color: #4a90e2; | |
| 810 | + font-weight: 400; | |
| 811 | +} | |
| 812 | + | |
| 813 | +.btn--demo, .btn--demo:visited { | |
| 814 | + background: #87CEEB; | |
| 815 | + border-color: #fff; | |
| 816 | +} | |
| 817 | + | |
| 818 | +/* Boutons CTA */ | |
| 819 | +.btn--primary, .btn--primary:visited { | |
| 820 | + color: #000000 !important; | |
| 821 | + background: transparent; | |
| 822 | + border-color: #87CEEB; | |
| 823 | +} | |
| 824 | + | |
| 825 | +.btn--primary:active { | |
| 826 | + background: #87CEEB; | |
| 827 | +} | |
| 828 | + | |
| 829 | +/* FOOTER SECTION */ | |
| 830 | +.footer-6 { | |
| 831 | + background: #004071; | |
| 832 | + padding-top: 50px; | |
| 833 | + padding-bottom: 20px; | |
| 834 | +} | |
| 835 | + | |
| 836 | +section, footer { | |
| 837 | + padding-top: 3.42857143em; | |
| 838 | + padding-bottom: 3.42857143em; | |
| 839 | +} | |
| 840 | + | |
| 841 | +/* Footer 1st column */ | |
| 842 | +.textwidget { | |
| 843 | + padding-top: 2em; | |
| 844 | + font-size: 13px; | |
| 845 | + margin-bottom: 10px; | |
| 846 | + text-align: justify; | |
| 847 | +} | |
| 848 | + | |
| 849 | +/* Footer 2nd column */ | |
| 850 | +#nav_menu-2, #nav_menu-3 { | |
| 851 | + padding-left: 60px; | |
| 852 | + margin-bottom: 60px; | |
| 853 | +} | |
| 854 | + | |
| 855 | +footer a { | |
| 856 | + font-weight: 400; | |
| 857 | +} | |
| 858 | + | |
| 859 | +footer ul:not(.list-inline):not(.slides)>li { | |
| 860 | + font-size: 14px; | |
| 861 | + line-height: 1.8em!important; | |
| 862 | +} | |
| 863 | + | |
| 864 | +footer ul li { | |
| 865 | + padding: 0px; | |
| 866 | + list-style: none; | |
| 867 | + margin-left: 5px; | |
| 868 | +} | |
| 869 | + | |
| 870 | +/* Footer 3rd column */ | |
| 871 | +#text-4 { | |
| 872 | + padding-left: 80px; | |
| 873 | +} | |
| 874 | + | |
| 875 | +h6.type--uppercase, .h6.type--uppercase { | |
| 876 | + margin-block-end: -10px; | |
| 877 | +} | |
| 878 | + | |
| 879 | +.alignlefticon { | |
| 880 | + float: none; | |
| 881 | +} | |
| 882 | + | |
| 883 | +/* Footer columns on mobile */ | |
| 884 | +@media (max-width: 768px){ | |
| 885 | + .widget_media_image img { | |
| 886 | + display: block; | |
| 887 | + margin-left: auto; | |
| 888 | + margin-right: auto; | |
| 889 | + } | |
| 890 | + #nav_menu-2, #nav_menu-3 { | |
| 891 | + display: none; | |
| 892 | + padding-left: 150px; | |
| 893 | + margin-top: 30px; | |
| 894 | + } | |
| 895 | + #text-4 h6 { | |
| 896 | + padding-left: 0px; | |
| 897 | + margin-top: 30px; | |
| 898 | + text-align: left; | |
| 899 | + } | |
| 900 | + #text-4 { | |
| 901 | + padding: 0px; | |
| 902 | + } | |
| 903 | + #text-3 .textwidget, #text-4 .textwidget { | |
| 904 | + padding-left: 0px; | |
| 905 | + text-align: left; | |
| 906 | + } | |
| 907 | +} | |
| 908 | + | |
| 909 | +/* Footer sub footer */ | |
| 910 | +.footer-stack-copyright, .menu-item-4840 ul>li { | |
| 911 | + font-size: 14px; | |
| 912 | + text-align: center; | |
| 913 | +} | |
| 914 | + | |
| 915 | +.menu-footer-menu-container>ul>li { | |
| 916 | + font-size: 14px; | |
| 917 | + display: inline; | |
| 918 | + padding: 0px 10px 0px 10px | |
| 919 | +} | |
| 920 | + | |
| 921 | +/* How to not impact header menu? */ | |
| 922 | +.menu-footer-menu, .menu-item-type-post_type:not(:last-child) { | |
| 923 | + border-right: 0px solid #bbb; | |
| 924 | +} | |
| 925 | + | |
| 926 | +.menu-footer-menu, .menu-item-type-post_type:last-child { | |
| 927 | + border-right: 0px; | |
| 928 | +} | |
| 929 | + | |
| 930 | +.vc_btn3.vc_btn3-size-lg { | |
| 931 | + font-size: 18px; | |
| 932 | + font-weight: 400; | |
| 933 | + padding-top: 16px; | |
| 934 | + padding-bottom: 20px; | |
| 935 | + padding-left: 40px; | |
| 936 | + padding-right: 40px; | |
| 937 | +} | |
| 938 | + | |
| 939 | +.vc_btn3.vc_btn3-color-orange, .vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat { | |
| 940 | + color: #000000; | |
| 941 | + background-color: #87CEEB; | |
| 942 | +} | |
| 943 | + | |
| 944 | + | |
| 945 | +/* TEMPLATE LAYOUT */ | |
| 946 | +/* 5 column layout */ | |
| 947 | +@media (min-width: 768px){ | |
| 948 | + .column5 { | |
| 949 | + width: 16%; | |
| 950 | + margin: 0 2%; | |
| 951 | + float:left; | |
| 952 | + } | |
| 953 | + .column6 { | |
| 954 | + width: 12%; | |
| 955 | + margin: 0 2%; | |
| 956 | + float:left; | |
| 957 | + } | |
| 958 | +} | |
| 959 | + | |
| 960 | +/* BLOG */ | |
| 961 | +/* Note: Grid template: loop/content-post-cards.php */ | |
| 962 | +/* Blog post font style */ | |
| 963 | +article .article__body p, article .article__body ul { | |
| 964 | + font-size: 1.1em; | |
| 965 | + line-height: 1.6em; | |
| 966 | + font-weight: 400; | |
| 967 | + color: black; | |
| 968 | +} | |
| 969 | + | |
| 970 | +.wpb_wrapper a { | |
| 971 | + color: #13223f; | |
| 972 | + text-decoration-line: none; | |
| 973 | +} | |
| 974 | + | |
| 975 | +.vc_custom_heading a, .vc_custom_heading a:focus, .vc_custom_heading a:hover, .vc_custom_heading a:visited { | |
| 976 | + font-size: 1em; | |
| 977 | + line-height: 1.3em; | |
| 978 | + font-weight: 400; | |
| 979 | + color: #13223f; | |
| 980 | + text-decoration-line: none; | |
| 981 | +} | |
| 982 | + | |
| 983 | +/* Style Most Recent Articles List */ | |
| 984 | +.sidebar li { | |
| 985 | + font-size: 1em; | |
| 986 | + line-height: 1.2em; | |
| 987 | + font-weight: 400; | |
| 988 | + padding-bottom: 10px; | |
| 989 | +} | |
| 990 | + | |
| 991 | +/* Remove pagination after 3 latest blog post on homepage */ | |
| 992 | +.nopagination .pagination { | |
| 993 | + display: none; | |
| 994 | +} | |
| 995 | + | |
| 996 | +/* Vertical Spacing in Grid view */ | |
| 997 | +.masonry__item:not(:empty) { | |
| 998 | + margin-bottom: 0px; | |
| 999 | + transform-style: preserve-3d; | |
| 1000 | +} | |
| 1001 | + | |
| 1002 | +/* Category label in Grid mode */ | |
| 1003 | +.label { | |
| 1004 | + display: inline-block; | |
| 1005 | + font-size: 9px; | |
| 1006 | + font-weight: 700; | |
| 1007 | + letter-spacing: .5px; | |
| 1008 | + color: #000; | |
| 1009 | + text-transform: uppercase; | |
| 1010 | + height: 26px; | |
| 1011 | + min-width: 65px; | |
| 1012 | + padding: 0 10px; | |
| 1013 | + text-align: center; | |
| 1014 | + border-radius: 0px 20px 20px 0px; | |
| 1015 | + position: relative; | |
| 1016 | + z-index: 3; | |
| 1017 | + top: 8.5em; | |
| 1018 | + left: 0em; | |
| 1019 | +} | |
| 1020 | +.label:not([class*='bg--']) { | |
| 1021 | + background: #87CEEB; | |
| 1022 | +} | |
| 1023 | + | |
| 1024 | +.wpcf7-form p label { | |
| 1025 | + color: #004071 !important; | |
| 1026 | + font-size:18px !important; | |
| 1027 | +} | |
| 1028 | +.label-2 { | |
| 1029 | + display: inline-block; | |
| 1030 | + font-size: 9px; | |
| 1031 | + font-weight: 700; | |
| 1032 | + letter-spacing: .5px; | |
| 1033 | + color: #fff; | |
| 1034 | + text-transform: uppercase; | |
| 1035 | + height: 26px; | |
| 1036 | + min-width: 65px; | |
| 1037 | + padding: 0 20px; | |
| 1038 | + text-align: center; | |
| 1039 | + border-radius: 0px 20px 20px 0px; | |
| 1040 | + position: relative; | |
| 1041 | + z-index: 3; | |
| 1042 | + top: -26em; | |
| 1043 | + left: 0em; | |
| 1044 | +} | |
| 1045 | + | |
| 1046 | +.label-2:not([class*='bg--']) { | |
| 1047 | + background: #87CEEB; | |
| 1048 | +} | |
| 1049 | + | |
| 1050 | +/* Hide breadcrumb in Tag page */ | |
| 1051 | +.breadcrumbs { | |
| 1052 | + display: none; | |
| 1053 | +} | |
| 1054 | +.breadcrumb--section .background-image-holder { | |
| 1055 | + height: 280px; | |
| 1056 | + background-color:#ffffff !important; | |
| 1057 | +} | |
| 1058 | + | |
| 1059 | +.team-title { | |
| 1060 | + padding-top: 30px; | |
| 1061 | + margin-top: 30px; | |
| 1062 | +} | |
| 1063 | + | |
| 1064 | +/* CONTACT FORM */ | |
| 1065 | +.titre-champ { | |
| 1066 | + font-size: 1.1em; | |
| 1067 | + line-height: 1.4em; | |
| 1068 | + font-weight: 400; | |
| 1069 | + margin-bottom: 1em; | |
| 1070 | +} | |
| 1071 | + | |
| 1072 | +input[type], select, textarea { | |
| 1073 | + margin-bottom: 0.5em; | |
| 1074 | + margin-top: 0.5em; | |
| 1075 | + border:1.5px solid #004071; | |
| 1076 | +} | |
| 1077 | +input[type="checkbox"] { | |
| 1078 | + width: 13px !important ; | |
| 1079 | + -webkit-appearance: checkbox !important; | |
| 1080 | +} | |
| 1081 | + | |
| 1082 | +span.wpcf7-list-item { | |
| 1083 | + display: inline-block; | |
| 1084 | + margin: 0 0 0 0; | |
| 1085 | +} | |
| 1086 | + | |
| 1087 | +button[type="submit"]:not([class*='col-']) { | |
| 1088 | + width: 30%; | |
| 1089 | +} | |
| 1090 | + | |
| 1091 | +.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output { | |
| 1092 | + border-color: #D90000; | |
| 1093 | + border-radius: 25px; | |
| 1094 | +} | |
| 1095 | + | |
| 1096 | +.wpcf7 form.sent .wpcf7-response-output { | |
| 1097 | + border-color: #3767D9; | |
| 1098 | + width: 50%; | |
| 1099 | +} | |
| 1100 | + | |
| 1101 | +/* Apply custom style to all CF7 checkboxes */ | |
| 1102 | +.wpcf7 input[type="checkbox"] { | |
| 1103 | + opacity: 0; | |
| 1104 | + position: absolute; | |
| 1105 | + width: 25px; | |
| 1106 | + height: 25px; | |
| 1107 | + margin: 0; | |
| 1108 | + z-index: 2; | |
| 1109 | + cursor: pointer; | |
| 1110 | +} | |
| 1111 | + | |
| 1112 | +.wpcf7 .wpcf7-list-item { | |
| 1113 | + position: relative; | |
| 1114 | + padding-left: 28px; | |
| 1115 | + display: inline-block; | |
| 1116 | + cursor: pointer; | |
| 1117 | +} | |
| 1118 | + | |
| 1119 | +.wpcf7 input[type="checkbox"] + span::before { | |
| 1120 | + content: ""; | |
| 1121 | + position: absolute; | |
| 1122 | + left: 0; | |
| 1123 | + top: 0; | |
| 1124 | + width: 25px; | |
| 1125 | + height: 25px; | |
| 1126 | + border: 1px solid #004071; | |
| 1127 | + background-color: white; | |
| 1128 | + box-sizing: border-box; | |
| 1129 | + border-radius: 0px; | |
| 1130 | + transition: all 0.2s ease; | |
| 1131 | + margin-top:5px; | |
| 1132 | +} | |
| 1133 | + | |
| 1134 | +.wpcf7 input[type="checkbox"]:checked + span::before { | |
| 1135 | + background-image: linear-gradient(#004071, #004071); | |
| 1136 | + background-clip: content-box; | |
| 1137 | + padding: 2px; /* this creates the white gap between border and inner fill */ | |
| 1138 | +} | |
| 1139 | + | |
| 1140 | + | |
| 1141 | +@media (max-width: 768px){ | |
| 1142 | + input:not([class*='col-']), select:not([class*='col-']), .input-select:not([class*='col-']), textarea:not([class*='col-']) { | |
| 1143 | + width: 100%; | |
| 1144 | + margin-top:0; | |
| 1145 | + } | |
| 1146 | + .menu-item>a{ | |
| 1147 | + color:#000000 !important; | |
| 1148 | + } | |
| 1149 | + button[type="submit"]:not([class*='col-']) { | |
| 1150 | + width: 50%; | |
| 1151 | + } | |
| 1152 | + .wpcf7 form.sent .wpcf7-response-output { | |
| 1153 | + width: 100%; | |
| 1154 | + } | |
| 1155 | +} | |
| 1156 | + | |
| 1157 | +/* Hide Captcha all pages */ | |
| 1158 | +body:not(.page-id-XX) .grecaptcha-badge { | |
| 1159 | + display: none; | |
| 1160 | +} | |
| 1161 | + | |
| 1162 | +/*css pour les offres*/ | |
| 1163 | +li.location a.google_map_link { | |
| 1164 | + color: #87CEEB; | |
| 1165 | + text-decoration: none; | |
| 1166 | + transition: color 0.3s ease; | |
| 1167 | +} | |
| 1168 | +li.location a.google_map_link:hover { | |
| 1169 | + color: #0022CC; | |
| 1170 | +} | |
| 1171 | +h1.h2 { | |
| 1172 | + background-image: url('https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/07/SITE_TALENTS_CHUM_PHOTO_1900_V1-06.jpg'); | |
| 1173 | + background-repeat: no-repeat; | |
| 1174 | + background-position: center center; | |
| 1175 | + background-size: 105vw 60vh; | |
| 1176 | + background-attachment: scroll; | |
| 1177 | + color: white; | |
| 1178 | + padding: 40px 20px; | |
| 1179 | + height:40vh; | |
| 1180 | +} | |
| 1181 | +li.job-type.temps-complet , li.job-type.temps-partiel-regulier, li.job-type.temps-partiel-occasionnel{ | |
| 1182 | + background-color: #87CEEB !important; | |
| 1183 | + color: white !important; | |
| 1184 | + text-align: center !important; | |
| 1185 | + justify-content: center !important; | |
| 1186 | + text-align: center !important; | |
| 1187 | + padding-top:10px !important; | |
| 1188 | + padding-right:10px !important; | |
| 1189 | + border-radius: 10px; | |
| 1190 | + color: black !important; | |
| 1191 | +} | |
| 1192 | +ul.job-listing-meta li { | |
| 1193 | + display: block; | |
| 1194 | +} | |
| 1195 | +ul.job-listing-meta { | |
| 1196 | + display: none; | |
| 1197 | +} | |
| 1198 | +input.application_button.button { | |
| 1199 | + background-color: #fff; | |
| 1200 | + color: #004071; | |
| 1201 | + border: none; | |
| 1202 | + width:auto; | |
| 1203 | + cursor: pointer; | |
| 1204 | + transition: background-color 0.3s ease; | |
| 1205 | +} | |
| 1206 | +input.application_button.button:hover { | |
| 1207 | + background-color: #004071 ; | |
| 1208 | + color:#fff; | |
| 1209 | +} | |
| 1210 | +div.addtoany_share_save_container { | |
| 1211 | + display: none; | |
| 1212 | +} | |
| 1213 | +.job_description h1, | |
| 1214 | +.job_description h2, | |
| 1215 | +.job_description h3, | |
| 1216 | +.job_description h4, | |
| 1217 | +.job_description h5, | |
| 1218 | +.job_description h6 { | |
| 1219 | + margin-bottom: 10px; | |
| 1220 | + margin-top: 20px; | |
| 1221 | + color:#000; | |
| 1222 | + font-weight: bold; | |
| 1223 | + font-size:25px; | |
| 1224 | +} | |
| 1225 | +.job_description { | |
| 1226 | + font-size:19px; | |
| 1227 | +} | |
| 1228 | + | |
| 1229 | +.single_job_listing hr{ | |
| 1230 | + border-color: #16375E50 !important; | |
| 1231 | +} | |
| 1232 | +.single_job_listing .default-text{ | |
| 1233 | + padding-bottom:20px; | |
| 1234 | + border-bottom: 1px solid #16375E50; | |
| 1235 | +} | |
| 1236 | +.single_job_listing .job_description h2{ | |
| 1237 | + padding-top:50px; | |
| 1238 | +} | |
| 1239 | +li.wpjmef-field-salary { | |
| 1240 | + display: none !important; | |
| 1241 | +} | |
| 1242 | +img.company_logo { | |
| 1243 | + display: none; | |
| 1244 | +} | |
| 1245 | +/* | |
| 1246 | +ul.meta { | |
| 1247 | + width: 100% !important; | |
| 1248 | + margin-top: 10px !important; | |
| 1249 | + display: flex; | |
| 1250 | + align-items: center; | |
| 1251 | +} | |
| 1252 | +ul.meta li { | |
| 1253 | + display: inline !important; | |
| 1254 | +}*/ | |
| 1255 | + | |
| 1256 | +/*hide copyright in footer*/ | |
| 1257 | +div.footer__lower.text-center-xs { | |
| 1258 | + display: none; | |
| 1259 | +} | |
| 1260 | +.alignleft { | |
| 1261 | + margin-right: 10px !important; | |
| 1262 | +} | |
| 1263 | +/*hide le + dans les offres*/ | |
| 1264 | +.a2a_dd.addtoany_share_save.addtoany_share { | |
| 1265 | + display: none; | |
| 1266 | +} | |
| 1267 | +/*hide the alerte button in Liste des offres d’emplois*/ | |
| 1268 | +a.alert { | |
| 1269 | + display: none; | |
| 1270 | +} | |
| 1271 | +/* Hide borders and set background to white for ul and its li children in job types*/ | |
| 1272 | +ul.job_types { | |
| 1273 | + list-style: none !important; | |
| 1274 | + padding: 0 !important; | |
| 1275 | + border: none !important; | |
| 1276 | + background-color: transparent !important; | |
| 1277 | +} | |
| 1278 | +ul.job_types li { | |
| 1279 | + border: none !important; | |
| 1280 | + font-size: 125%; | |
| 1281 | +} | |
| 1282 | +.showing_jobs { | |
| 1283 | + background-color:#7cafde82 !important; | |
| 1284 | +} | |
| 1285 | + | |
| 1286 | +.job-type { | |
| 1287 | + margin-right: 20px; | |
| 1288 | +} | |
| 1289 | + | |
| 1290 | +div.job-location { | |
| 1291 | + font-weight: bold; | |
| 1292 | + margin-top: -6.5%; | |
| 1293 | +} | |
| 1294 | + | |
| 1295 | +.before-job button.application_button.button { | |
| 1296 | + color: white; | |
| 1297 | + border: 2px solid #ffffff; | |
| 1298 | + cursor: pointer; | |
| 1299 | + transition: background-color 0.3s ease; | |
| 1300 | + border-radius: 30px; | |
| 1301 | + font-weight:700; | |
| 1302 | +} | |
| 1303 | + | |
| 1304 | +.before-job button.application_button.button:hover { | |
| 1305 | + color: #483388; | |
| 1306 | + background: #ffffff; | |
| 1307 | +} | |
| 1308 | +.before-job .job_application.application{ | |
| 1309 | + margin-top: -110px; | |
| 1310 | + z-index: 10; | |
| 1311 | + position: relative; | |
| 1312 | +} | |
| 1313 | + | |
| 1314 | +.job-manager-single-alert-link a { | |
| 1315 | + color: #6BA4BB; | |
| 1316 | +} | |
| 1317 | +.job-manager-single-alert-link a:hover { | |
| 1318 | + color: #B3E0F7; | |
| 1319 | +} | |
| 1320 | +.back-link { | |
| 1321 | + display: block; | |
| 1322 | + width: 100%; | |
| 1323 | + margin-bottom: -77.5px; | |
| 1324 | + margin-left: -10px; | |
| 1325 | +} | |
| 1326 | +.job-type-location .job-type, | |
| 1327 | +.job-type-location .job-location, | |
| 1328 | +.job-type-location .job-time-left{ | |
| 1329 | + margin-right: 20px; | |
| 1330 | + color: #004071; | |
| 1331 | + font-size: 19px; | |
| 1332 | + font-weight: normal; | |
| 1333 | +} | |
| 1334 | + | |
| 1335 | +.application_details { | |
| 1336 | + background-color: white; | |
| 1337 | +} | |
| 1338 | + | |
| 1339 | +.back-link a { | |
| 1340 | + color: #767676; | |
| 1341 | +} | |
| 1342 | +.back-link a:hover { | |
| 1343 | + color: gray; | |
| 1344 | +} | |
| 1345 | + | |
| 1346 | +.job-type-location span { | |
| 1347 | + font-family: 'Gotham',sans-serif; | |
| 1348 | +} | |
| 1349 | + | |
| 1350 | +.search_submit { | |
| 1351 | + text-align: right; | |
| 1352 | +} | |
| 1353 | + | |
| 1354 | +@media screen and (max-width: 768px) { | |
| 1355 | + .job_application { | |
| 1356 | + flex: 100%; | |
| 1357 | + justify-content: flex-start; | |
| 1358 | + } | |
| 1359 | +} | |
| 1360 | + | |
| 1361 | +.input-select { | |
| 1362 | + display: block; | |
| 1363 | +} | |
| 1364 | + | |
| 1365 | +div.search_categories { | |
| 1366 | + padding-top:10px !important; | |
| 1367 | +} | |
| 1368 | +.search_jobs { | |
| 1369 | + display: flex ; | |
| 1370 | + flex-wrap: wrap ; | |
| 1371 | +} | |
| 1372 | +.search_submit { | |
| 1373 | + flex: 30%; | |
| 1374 | +} | |
| 1375 | + | |
| 1376 | +.search_location { | |
| 1377 | + width: 100% !important; | |
| 1378 | + padding-top: 10px; | |
| 1379 | + padding-left:0 !important; | |
| 1380 | + flex: 1; | |
| 1381 | + min-width: 0; | |
| 1382 | +} | |
| 1383 | + | |
| 1384 | +.search_location .input-select { | |
| 1385 | + display: block; | |
| 1386 | +} | |
| 1387 | + | |
| 1388 | +.search_keywords { | |
| 1389 | + width: 100% !important; | |
| 1390 | + padding-top: 10px; | |
| 1391 | + padding-left:0 !important; | |
| 1392 | + padding-right:0 !important; | |
| 1393 | + flex: 2; | |
| 1394 | + min-width: 0; | |
| 1395 | +} | |
| 1396 | + | |
| 1397 | +.location-n-cat .location-n-cat:has(.search_keywords) { | |
| 1398 | + width: 100%; | |
| 1399 | + display: flex; | |
| 1400 | + gap: 10px; | |
| 1401 | + flex-wrap: wrap; | |
| 1402 | +} | |
| 1403 | + | |
| 1404 | +.search_submit { | |
| 1405 | + margin-top: 10px; | |
| 1406 | +} | |
| 1407 | + | |
| 1408 | +/* Adjustments for select dropdowns */ | |
| 1409 | +/* Hide the comments */ | |
| 1410 | +.comments { | |
| 1411 | + display: none; | |
| 1412 | +} | |
| 1413 | +/* Hide the comment form */ | |
| 1414 | +.comments-form { | |
| 1415 | + display: none; | |
| 1416 | +} | |
| 1417 | + | |
| 1418 | +input:not([class*='col-']), select:not([class*='col-']), .input-select:not([class*='col-']), textarea:not([class*='col-']) { | |
| 1419 | + width: 100%; | |
| 1420 | + margin-top:0; | |
| 1421 | +} | |
| 1422 | + | |
| 1423 | +#search_location { | |
| 1424 | + background-color: transparent; | |
| 1425 | + border: 2px solid #004071; | |
| 1426 | + border-radius: 10px; | |
| 1427 | + padding-top: 10px; | |
| 1428 | + padding-top: 5px; | |
| 1429 | + font-size: 16px; | |
| 1430 | +} | |
| 1431 | +.input-select:after { | |
| 1432 | + position: absolute; | |
| 1433 | + right: 0; | |
| 1434 | + height: 100%; | |
| 1435 | + top: 0; | |
| 1436 | + font-size: 40px; | |
| 1437 | + font-weight: 700; | |
| 1438 | + color: #13223f !important; | |
| 1439 | + transform: rotate(90deg); | |
| 1440 | + content: '\203A'; | |
| 1441 | + pointer-events: none; | |
| 1442 | + border-left: none; | |
| 1443 | + line-height: 60px; | |
| 1444 | +} | |
| 1445 | +#search_keywords { | |
| 1446 | + background-color: transparent; | |
| 1447 | + border: 2px solid #004071; | |
| 1448 | + border-radius: 10px; | |
| 1449 | + color: #004071 !important; | |
| 1450 | +} | |
| 1451 | +input[type]:focus, select:focus, textarea:focus { | |
| 1452 | + border-color: #2b546b !important; | |
| 1453 | +} | |
| 1454 | +select { | |
| 1455 | + color: #B3B3BD; | |
| 1456 | +} | |
| 1457 | +@media screen and (max-width: 767px) { | |
| 1458 | + input[type="submit"] { | |
| 1459 | + width: 100% !important; | |
| 1460 | + font-size:18px!important; | |
| 1461 | + } | |
| 1462 | + | |
| 1463 | +} | |
| 1464 | +.fas.fa-calendar, .fas.fa-clock, .fas.fa-map-marker-alt { | |
| 1465 | + color: #004071; | |
| 1466 | + margin-right:5px; | |
| 1467 | +} | |
| 1468 | + | |
| 1469 | +.footer-6 { | |
| 1470 | + position: absolute; | |
| 1471 | + left: 0; | |
| 1472 | + right: 0; | |
| 1473 | + width: 100%; | |
| 1474 | + margin-top:10px; | |
| 1475 | +} | |
| 1476 | + | |
| 1477 | +.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn--primary { | |
| 1478 | + background-color: #004071; | |
| 1479 | + color: #fff !important; | |
| 1480 | + width: auto; | |
| 1481 | + padding: 0px 15px ; | |
| 1482 | + font-size:23px; | |
| 1483 | + margin-top: 10px; | |
| 1484 | + font-family:'Gotham',sans-serif; | |
| 1485 | + height:auto; | |
| 1486 | + box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3);} | |
| 1487 | + | |
| 1488 | +.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn--primary:hover{ | |
| 1489 | + background-color: #fff; | |
| 1490 | + color:#004071 !important; | |
| 1491 | + border:1px solid #004071; | |
| 1492 | +} | |
| 1493 | + | |
| 1494 | +.masonry { | |
| 1495 | + transform: scale(0.6); | |
| 1496 | + margin-top: -50%; | |
| 1497 | + margin-bottom: -40%; | |
| 1498 | +} | |
| 1499 | + | |
| 1500 | +.masonry__item h4 { | |
| 1501 | + transform: scale(1.3); | |
| 1502 | +} | |
| 1503 | + | |
| 1504 | +div.article__title + span { | |
| 1505 | + display: none; | |
| 1506 | +} | |
| 1507 | + | |
| 1508 | +.bar__module a.btn--demo { | |
| 1509 | + background-color: #004071; | |
| 1510 | + border-radius: 5px; | |
| 1511 | + padding:5px 25px; | |
| 1512 | + width:auto; | |
| 1513 | +} | |
| 1514 | +.btn--demo .btn__text::before { | |
| 1515 | + content: ""; | |
| 1516 | + display: none; | |
| 1517 | + width: 20px; | |
| 1518 | + height: 20px; | |
| 1519 | + margin-right: 8px; | |
| 1520 | + background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='white' stroke-width='2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 4-6 8-6s8 2 8 6'/%3E%3C/svg%3E"); | |
| 1521 | + background-size: contain; | |
| 1522 | + background-repeat: no-repeat; | |
| 1523 | + vertical-align: middle; | |
| 1524 | +} | |
| 1525 | + | |
| 1526 | +#menu1 { | |
| 1527 | + padding-top: 60px; | |
| 1528 | +} | |
| 1529 | + | |
| 1530 | +.flickity-page-dots .dot { | |
| 1531 | + display: none; | |
| 1532 | +} | |
| 1533 | + | |
| 1534 | +.wpcf7-list-item-label { | |
| 1535 | + font-size: 17px; | |
| 1536 | + display: inline-block; | |
| 1537 | + vertical-align: top; | |
| 1538 | + padding-left: 0.4em; | |
| 1539 | + line-height: 30px; | |
| 1540 | + color:#004071; | |
| 1541 | +} | |
| 1542 | +.wpcf7-form a{ | |
| 1543 | + color:#000; | |
| 1544 | + font-weight:600; | |
| 1545 | +} | |
| 1546 | + | |
| 1547 | +.wpcf7-list-item-label a{ | |
| 1548 | + font-weight:700; | |
| 1549 | + color:#004071; | |
| 1550 | +} | |
| 1551 | + | |
| 1552 | +.wpcf7-list-item label { | |
| 1553 | + display: flex; | |
| 1554 | + align-items: flex-start; | |
| 1555 | +} | |
| 1556 | + | |
| 1557 | +.wpcf7-list-item input[type="checkbox"] { | |
| 1558 | + margin-top: 0.2em; | |
| 1559 | +} | |
| 1560 | + | |
| 1561 | +#menu-vertical-menu-footer .menu-item { | |
| 1562 | + margin-left: 20px; | |
| 1563 | +} | |
| 1564 | + | |
| 1565 | +/* Hériter du style pour les Exigences et le Mandat dans une offre d'emploi */ | |
| 1566 | +.default-text * { | |
| 1567 | + font-size: inherit !important; | |
| 1568 | + padding-top: inherit !important; | |
| 1569 | + font-family: inherit !important; | |
| 1570 | + background-color: inherit !important; | |
| 1571 | +} | |
| 1572 | + | |
| 1573 | +/* Hériter du style pour Informations_de_base et Conditions_de_travail dans une offre d'emploi */ | |
| 1574 | +.Informations_de_base *, .Conditions_de_travail * { | |
| 1575 | + font-size: inherit !important; | |
| 1576 | +} | |
| 1577 | + | |
| 1578 | +/*homepage hero menu*/ | |
| 1579 | +.full-width-div { | |
| 1580 | + display: flex; | |
| 1581 | + flex-wrap: wrap; | |
| 1582 | + justify-content: space-between; | |
| 1583 | +} | |
| 1584 | + | |
| 1585 | +.image-container { | |
| 1586 | + width: calc(33.33% - 5px); | |
| 1587 | + flex-grow: 1; | |
| 1588 | + position: relative; | |
| 1589 | + text-align: center; | |
| 1590 | + font-weight: bold; | |
| 1591 | + display: inline-block; | |
| 1592 | + margin: 0; | |
| 1593 | + padding: 0; | |
| 1594 | + box-sizing: border-box; | |
| 1595 | +} | |
| 1596 | +.image-container::after { | |
| 1597 | + content: ""; | |
| 1598 | + position: absolute; | |
| 1599 | + inset: 0; | |
| 1600 | + background: linear-gradient( | |
| 1601 | + to bottom, | |
| 1602 | + rgba(230, 159, 67, 0.2) 25%, | |
| 1603 | + rgb(51, 46, 116, 0.9) 100% | |
| 1604 | + ); | |
| 1605 | + pointer-events: none; | |
| 1606 | + z-index:0; | |
| 1607 | +} | |
| 1608 | +.image-container:hover::after { | |
| 1609 | + background: linear-gradient( | |
| 1610 | + to bottom, | |
| 1611 | + rgb(44, 142, 151, 0.9) 30%, | |
| 1612 | + rgba(74, 39, 133, 0.9) 90% | |
| 1613 | + ); | |
| 1614 | +} | |
| 1615 | +.image-container img { | |
| 1616 | + width: 100%; | |
| 1617 | + max-width: 100%; | |
| 1618 | + height: auto; | |
| 1619 | + margin-bottom: 0px; | |
| 1620 | + display: block; | |
| 1621 | +} | |
| 1622 | +.image-container .text { | |
| 1623 | + position: absolute; | |
| 1624 | + bottom: 0; | |
| 1625 | + left: 0; | |
| 1626 | + width: 100%; | |
| 1627 | + text-align: center; | |
| 1628 | + padding: 10px; | |
| 1629 | + z-index: 1; | |
| 1630 | + transform: translateY(0); | |
| 1631 | + transition: | |
| 1632 | + top 0.4s ease, | |
| 1633 | + bottom 0.4s ease, | |
| 1634 | + transform 0.4s ease, | |
| 1635 | + background 0.4s ease, | |
| 1636 | + opacity 0.4s ease; | |
| 1637 | +} | |
| 1638 | +.image-container:hover .text { | |
| 1639 | + bottom: auto; | |
| 1640 | + top: 50%; | |
| 1641 | + transform: translateY(-50%); | |
| 1642 | +} | |
| 1643 | +.image-container .text span { | |
| 1644 | + color: white; | |
| 1645 | + font-size: 25px; | |
| 1646 | + font-weight: normal; | |
| 1647 | + z-index: 1; | |
| 1648 | +} | |
| 1649 | + | |
| 1650 | +@media (max-width: 767px) { | |
| 1651 | + .image-container { | |
| 1652 | + width: 100%; | |
| 1653 | + } | |
| 1654 | + .text span { | |
| 1655 | + font-size: 20px; | |
| 1656 | + line-height: 75%; | |
| 1657 | + } | |
| 1658 | +} | |
| 1659 | + | |
| 1660 | +.hero-text { | |
| 1661 | + color: white; | |
| 1662 | + position: relative; | |
| 1663 | +} | |
| 1664 | + | |
| 1665 | +.hero-text span { | |
| 1666 | + display: block; | |
| 1667 | + margin: 11px 0 17px 0; | |
| 1668 | + font-size: 30px; | |
| 1669 | + color: white; | |
| 1670 | + position: relative; | |
| 1671 | +} | |
| 1672 | + | |
| 1673 | +/*single job*/ | |
| 1674 | +.article__title { | |
| 1675 | + margin-bottom: -60px !important; | |
| 1676 | + margin-top: -60px !important; | |
| 1677 | + margin-left: -150% !important; | |
| 1678 | + margin-right: -150% !important; | |
| 1679 | + position: relative; | |
| 1680 | + z-index:5; | |
| 1681 | +} | |
| 1682 | +.article__title.text-center h1 { | |
| 1683 | + padding-left: 37.5555%; | |
| 1684 | + padding-right: 40%; | |
| 1685 | + padding-bottom: 125px; | |
| 1686 | + padding-top: 100px; | |
| 1687 | + font-size: 40px; | |
| 1688 | +} | |
| 1689 | + | |
| 1690 | +.vc_row.HeroNoPadding [class*="col-"] { | |
| 1691 | + padding-left: 0 !important; | |
| 1692 | + padding-right: 0 !important; | |
| 1693 | + margin-left: 0px; | |
| 1694 | + margin-right: 0px; | |
| 1695 | +} | |
| 1696 | + | |
| 1697 | +.article__title.text-center { | |
| 1698 | + text-align: left; | |
| 1699 | +} | |
| 1700 | + | |
| 1701 | +.nowrap { | |
| 1702 | + white-space: nowrap; | |
| 1703 | +} | |
| 1704 | + | |
| 1705 | +/*job listing*/ | |
| 1706 | +.load_more_jobs strong { | |
| 1707 | + font-size: 20px; | |
| 1708 | + color: black; | |
| 1709 | + font-weight: bold ; | |
| 1710 | +} | |
| 1711 | + | |
| 1712 | + | |
| 1713 | +/*home page hero*/ | |
| 1714 | +.hero-video::after { | |
| 1715 | + content: ""; | |
| 1716 | + position: absolute; | |
| 1717 | + inset: 0; | |
| 1718 | + background: linear-gradient( | |
| 1719 | + to bottom, | |
| 1720 | + rgba(230, 159, 67, 0.3) 0%, | |
| 1721 | + rgba(74, 39, 133, 0.8) 90% | |
| 1722 | + ); | |
| 1723 | + z-index: 1; | |
| 1724 | + pointer-events: none; | |
| 1725 | +} | |
| 1726 | + | |
| 1727 | +a.su-button.su-button-style-flat.hero-btn{ | |
| 1728 | + border: 4px solid #34ACAA !important; | |
| 1729 | +} | |
| 1730 | + | |
| 1731 | +a.su-button.su-button-style-flat.hero-btn:hover{ | |
| 1732 | + background-color: #ffffff !important; | |
| 1733 | +} | |
| 1734 | +a.su-button.su-button-style-flat { | |
| 1735 | + transition: background-color 0.3s ease; | |
| 1736 | +} | |
| 1737 | +a.su-button.su-button-style-flat span { | |
| 1738 | + transition: color 0.3s ease; | |
| 1739 | +} | |
| 1740 | +a.su-button.su-button-style-flat.hero-btn:hover span{ | |
| 1741 | + color: #34ACAA !important; | |
| 1742 | +} | |
| 1743 | + | |
| 1744 | + | |
| 1745 | +/*search*/ | |
| 1746 | +.job_filters { | |
| 1747 | + background-color: transparent; | |
| 1748 | + border: none; | |
| 1749 | +} | |
| 1750 | + | |
| 1751 | +.job_filters label { | |
| 1752 | + font-weight: bold; | |
| 1753 | +} | |
| 1754 | + | |
| 1755 | +.job_filters input[type="text"], | |
| 1756 | +.job_filters input[type="number"] { | |
| 1757 | + width: 100%; | |
| 1758 | + padding: 10px; | |
| 1759 | + border: 1px solid #ccc; | |
| 1760 | + border-radius: 3px; | |
| 1761 | +} | |
| 1762 | + | |
| 1763 | +.job_filters input[type="submit"] { | |
| 1764 | + background-color: #0032FF; | |
| 1765 | + color: #fff; | |
| 1766 | + padding: 10px 20px; | |
| 1767 | + border: none; | |
| 1768 | + border-radius: 3px; | |
| 1769 | + cursor: pointer; | |
| 1770 | +} | |
| 1771 | + | |
| 1772 | +.job_filters input[type="submit"]:hover { | |
| 1773 | + background-color: #0022CC; | |
| 1774 | +} | |
| 1775 | + | |
| 1776 | +.job_filters .job_types li{ | |
| 1777 | + padding-left:0px | |
| 1778 | +} | |
| 1779 | + | |
| 1780 | + | |
| 1781 | +ul.job_types li { | |
| 1782 | + list-style: none !IMPORTANT; | |
| 1783 | +} | |
| 1784 | +.input-select { | |
| 1785 | + display: none; | |
| 1786 | +} | |
| 1787 | +.rss_link { | |
| 1788 | + display: none; | |
| 1789 | +} | |
| 1790 | +.alignnone { | |
| 1791 | + width: 100%; | |
| 1792 | + height: auto; | |
| 1793 | +} | |
| 1794 | + | |
| 1795 | +.wpcf7-checkbox .wpcf7-list-item { | |
| 1796 | + display: inline-block; | |
| 1797 | + width: 31%; | |
| 1798 | + box-sizing: border-box; | |
| 1799 | + vertical-align: top; | |
| 1800 | + margin-top:20px; | |
| 1801 | +} | |
| 1802 | +.wpcf7-checkbox .wpcf7-list-item:nth-child(3n) { | |
| 1803 | + clear: both; | |
| 1804 | +} | |
| 1805 | + | |
| 1806 | + | |
| 1807 | +/* home page bsl special */ | |
| 1808 | +.custom-checklist { | |
| 1809 | + list-style: none; | |
| 1810 | + padding: 0; | |
| 1811 | + margin: 30px 0 0 0 !important; | |
| 1812 | +} | |
| 1813 | + | |
| 1814 | +.custom-checklist li { | |
| 1815 | + display: flex; | |
| 1816 | + align-items: flex-start; | |
| 1817 | + margin-left: 0px !important; | |
| 1818 | + font-size: 19px; | |
| 1819 | + color: #16375E; | |
| 1820 | +} | |
| 1821 | + | |
| 1822 | +.check-icon { | |
| 1823 | + flex-shrink: 0; | |
| 1824 | + margin-right: 10px; | |
| 1825 | + margin-top: -3px; | |
| 1826 | +} | |
| 1827 | + | |
| 1828 | +.button-row { | |
| 1829 | + display: flex; | |
| 1830 | + gap: 30px; | |
| 1831 | + justify-content: center; | |
| 1832 | + flex-wrap: wrap; | |
| 1833 | +} | |
| 1834 | + | |
| 1835 | +.custom-button { | |
| 1836 | + display: flex; | |
| 1837 | + align-items: center; | |
| 1838 | + gap: 16px; | |
| 1839 | + border: 3px solid #0d2f5a; | |
| 1840 | + background-color: #0d2f5a; | |
| 1841 | + color: white; | |
| 1842 | + padding: 20px 25px; | |
| 1843 | + border-radius: 50px; | |
| 1844 | + text-decoration: none; | |
| 1845 | + font-weight: bold; | |
| 1846 | + font-size: 18px; | |
| 1847 | + font-family: sans-serif; | |
| 1848 | + min-width: 280px; | |
| 1849 | + justify-content: flex-start; | |
| 1850 | +} | |
| 1851 | + | |
| 1852 | +.custom-button:hover { | |
| 1853 | + background-color:rgba(256, 256, 256, 0); | |
| 1854 | + color: #0d2f5a; | |
| 1855 | +} | |
| 1856 | +.custom-button .icon { | |
| 1857 | + display: flex; | |
| 1858 | + align-items: center; | |
| 1859 | + justify-content: center; | |
| 1860 | +} | |
| 1861 | + | |
| 1862 | +.custom-button svg { | |
| 1863 | + height: 50px; | |
| 1864 | + min-width: 50px; | |
| 1865 | +} | |
| 1866 | + | |
| 1867 | +.custom-button .text { | |
| 1868 | + line-height: 1.3; | |
| 1869 | + text-align: left; | |
| 1870 | + color: #fff; | |
| 1871 | + font-size: 25px; | |
| 1872 | +} | |
| 1873 | +.custom-button:hover .text { | |
| 1874 | + color: #0d2f5a; | |
| 1875 | +} | |
| 1876 | + | |
| 1877 | +.button-row-bckground { | |
| 1878 | + background: linear-gradient( | |
| 1879 | + to bottom, | |
| 1880 | + rgba(230, 159, 67, 0.2) 25%, | |
| 1881 | + rgb(51, 46, 116, 0.2) 100% | |
| 1882 | + ); | |
| 1883 | +} | |
| 1884 | + | |
| 1885 | +.banner { | |
| 1886 | + margin: 0; | |
| 1887 | + background-color: #17355f; | |
| 1888 | +} | |
| 1889 | +.banner-container { | |
| 1890 | + display: flex; | |
| 1891 | + align-items: center; | |
| 1892 | + justify-content: center; | |
| 1893 | + padding: 60px 100px 60px 60px !important; | |
| 1894 | +} | |
| 1895 | +.home-chezNous-section img{ | |
| 1896 | + border-radius:15px; | |
| 1897 | +} | |
| 1898 | +.home-chezNous-section { | |
| 1899 | + position: relative; | |
| 1900 | + text-align: right; | |
| 1901 | + font-weight: bold; | |
| 1902 | + display: inline-block; | |
| 1903 | + margin: 0; | |
| 1904 | + height: auto; | |
| 1905 | + } | |
| 1906 | +.home-chezNous-section .chezNous-btns { | |
| 1907 | + position: absolute; | |
| 1908 | + bottom: 50%; | |
| 1909 | + left: 65%; | |
| 1910 | + width: 100%; | |
| 1911 | + text-align: center; | |
| 1912 | + width: auto; | |
| 1913 | +} | |
| 1914 | +.home-chezNous-section .chezNous-btn { | |
| 1915 | + color: #F67E4A; | |
| 1916 | + background: #fff; | |
| 1917 | + border: 3px solid #fff; | |
| 1918 | + padding: 7px; | |
| 1919 | + font-size: 35px; | |
| 1920 | + border-radius:10px; | |
| 1921 | + font-weight: 900; | |
| 1922 | + box-shadow: -4px 6px 0px 0px #C2653C; | |
| 1923 | +} | |
| 1924 | +.home-chezNous-section .chezNous-btn:hover { | |
| 1925 | + border: 3px solid #fff; | |
| 1926 | + background: #F67E4A; | |
| 1927 | + color: white; | |
| 1928 | +} | |
| 1929 | +.chezNous-btns a { | |
| 1930 | + display: inline-block; | |
| 1931 | + text-decoration: none; | |
| 1932 | +} | |
| 1933 | +.chezNous-link { | |
| 1934 | + margin-top: 20px; | |
| 1935 | + display: inline-block; | |
| 1936 | + color: #fff !important; | |
| 1937 | + font-weight: normal; | |
| 1938 | + font-size: 20px; | |
| 1939 | +} | |
| 1940 | +.chezNous-link:hover { | |
| 1941 | + text-decoration: underline; | |
| 1942 | + font-weight:bold; | |
| 1943 | +} | |
| 1944 | + | |
| 1945 | +.banner-container div:has(.home-chezNous-section) { | |
| 1946 | + text-align: center; | |
| 1947 | +} | |
| 1948 | +.chezNous-autre { | |
| 1949 | + background: white !important; | |
| 1950 | + border-radius:15px; | |
| 1951 | + display: flex; | |
| 1952 | + align-items: center; | |
| 1953 | + margin-left: -60px; | |
| 1954 | +} | |
| 1955 | +.banner-container.vc_row { | |
| 1956 | + display: flex; | |
| 1957 | + align-items: stretch; | |
| 1958 | +} | |
| 1959 | +.vc_col-has-fill>.vc_column-inner, .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_vc_row>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_vc_row_inner>.vc_row>.vc_vc_column_inner>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_vc_column_inner>.vc_column_container>.vc_column-inner, .vc_section.vc_section-has-fill, .vc_section.vc_section-has-fill+.vc_row-full-width+.vc_section, .vc_section.vc_section-has-fill+.vc_section{ | |
| 1960 | + padding-top: 0px; | |
| 1961 | +} | |
| 1962 | + | |
| 1963 | +/*footer*/ | |
| 1964 | +.footer-t { | |
| 1965 | + color:#fff !important; | |
| 1966 | + font-weight: bold !important; | |
| 1967 | + font-size: 30px ; | |
| 1968 | +} | |
| 1969 | +.footer a { | |
| 1970 | + color:#fff !important; | |
| 1971 | +} | |
| 1972 | + | |
| 1973 | +.footer-with-b { | |
| 1974 | + display: flex; | |
| 1975 | + flex-direction: column; | |
| 1976 | + align-items: flex-start; | |
| 1977 | + gap: 0px; | |
| 1978 | +} | |
| 1979 | + | |
| 1980 | +.footer-b { | |
| 1981 | + display: inline-block; | |
| 1982 | + padding: 12px 30px; | |
| 1983 | + color: white !important; | |
| 1984 | + border: 2px solid white; | |
| 1985 | + border-radius: 10px; | |
| 1986 | + text-decoration: none; | |
| 1987 | + font-weight: bold; | |
| 1988 | + background: transparent; | |
| 1989 | + transition: background 0.3s, color 0.3s; | |
| 1990 | + text-align: center; | |
| 1991 | + min-width: 230px; | |
| 1992 | + font-size: 20px; | |
| 1993 | +} | |
| 1994 | +.footer-b:hover { | |
| 1995 | + background: white; | |
| 1996 | + color: #2b546b !important; | |
| 1997 | +} | |
| 1998 | + | |
| 1999 | +.left-section a{ | |
| 2000 | + color: #fff !important; | |
| 2001 | + font-size: 23px; | |
| 2002 | +} | |
| 2003 | +.left-section a:hover{ | |
| 2004 | + color: #0067a5 !important; | |
| 2005 | +} | |
| 2006 | + a.footer-t:hover{ | |
| 2007 | + color: #95F0FE !important; | |
| 2008 | +} | |
| 2009 | +/* home-job card */ | |
| 2010 | +.home-jobs .job-listing-wrapper { | |
| 2011 | + overflow-x: auto; | |
| 2012 | + overflow-y: hidden; | |
| 2013 | + white-space: nowrap; | |
| 2014 | + padding-bottom: 20px; | |
| 2015 | + scrollbar-width: none; | |
| 2016 | +} | |
| 2017 | +.home-jobs .job-listing-wrapper::-webkit-scrollbar { | |
| 2018 | + display: none; /* Chrome, Safari */ | |
| 2019 | +} | |
| 2020 | +.home-jobs .job_listings { | |
| 2021 | + display: flex; | |
| 2022 | + flex-wrap: nowrap; | |
| 2023 | + gap: 20px; | |
| 2024 | + list-style: none; | |
| 2025 | + padding: 0; | |
| 2026 | + margin: 5px; | |
| 2027 | +} | |
| 2028 | +.home-jobs .job-card { | |
| 2029 | + background:#C6C6B845; | |
| 2030 | + border-radius: 10px; | |
| 2031 | + box-shadow: 0 4px 15px rgba(0,0,0,0.05); | |
| 2032 | + padding: 40px 20px; | |
| 2033 | + width: 300px; | |
| 2034 | + min-width: 325px; | |
| 2035 | + min-height: 420px; | |
| 2036 | + white-space: normal; | |
| 2037 | + display: flex; | |
| 2038 | + flex-direction: column; | |
| 2039 | + justify-content: space-between; | |
| 2040 | +} | |
| 2041 | + | |
| 2042 | +.home-jobs .job-card:hover{ | |
| 2043 | + background:#0067a5; | |
| 2044 | +} | |
| 2045 | +.home-jobs .job-listing-link-button{ | |
| 2046 | + background: transparent; | |
| 2047 | + border: 2px solid #7CAFDE !important; | |
| 2048 | + color: #7CAFDE; | |
| 2049 | + text-align: center; | |
| 2050 | + border-radius: 10px; | |
| 2051 | + margin: 0 120px 0 0!important; | |
| 2052 | + padding: 5px!important; | |
| 2053 | + font-size: 19px; | |
| 2054 | +} | |
| 2055 | +.home-jobs .job-card:hover .job-listing-link-button { | |
| 2056 | + background-color: transparent; | |
| 2057 | + color: white; | |
| 2058 | + border-color:#fff !important; | |
| 2059 | +} | |
| 2060 | + | |
| 2061 | + | |
| 2062 | +.home-jobs .job-title h3 { | |
| 2063 | + font-size: 23px; | |
| 2064 | + color: #000; | |
| 2065 | + margin-bottom: 15px; | |
| 2066 | + font-weight: bolder; | |
| 2067 | +} | |
| 2068 | +.home-jobs .job-card:hover .job-title h3{ | |
| 2069 | + color:#fff; | |
| 2070 | +} | |
| 2071 | +.home-jobs .job-type-location span { | |
| 2072 | + display: flex; | |
| 2073 | + align-items: center; | |
| 2074 | + gap: 8px; | |
| 2075 | + color: #000; | |
| 2076 | + font-weight:bolder; | |
| 2077 | + margin-bottom: 8px; | |
| 2078 | + font-size: 20px; | |
| 2079 | + line-height: 18px; | |
| 2080 | + min-height:40px; | |
| 2081 | +} | |
| 2082 | +.home-jobs .job-type-location{ | |
| 2083 | + border-top:1px solid #7cafde; | |
| 2084 | +} | |
| 2085 | +.home-jobs .job-card:hover .job-type-location span{ | |
| 2086 | + color:#fff; | |
| 2087 | +} | |
| 2088 | +.home-jobs .job-type-location span.apply-button{ | |
| 2089 | + min-height:10px; | |
| 2090 | +} | |
| 2091 | +.home-jobs ul.job_listings li.job_listing, .home-jobs ul.job_listings { | |
| 2092 | + border: none !important; | |
| 2093 | +} | |
| 2094 | +ul.job_listings li.job_listing a{ | |
| 2095 | + padding: 0 ; | |
| 2096 | +} | |
| 2097 | +ul.job_listings li.job_listing a:hover{ | |
| 2098 | + background:transparent; | |
| 2099 | +} | |
| 2100 | +.home-jobs .job-type-location i { | |
| 2101 | + color: #000; | |
| 2102 | + display:none; | |
| 2103 | +} | |
| 2104 | +.home-jobs .job-listing-link { | |
| 2105 | + text-decoration: none; | |
| 2106 | + color: inherit; | |
| 2107 | +} | |
| 2108 | +.home-jobs .nav-btn { | |
| 2109 | + background: none; | |
| 2110 | + border:none; | |
| 2111 | + border: none; | |
| 2112 | + padding: 0; | |
| 2113 | + cursor: pointer; | |
| 2114 | + transition: transform 0.2s ease; | |
| 2115 | +} | |
| 2116 | +.home-jobs .nav-btn svg circle { | |
| 2117 | + transition: fill 0.3s ease, stroke 0.3s ease; | |
| 2118 | +} | |
| 2119 | +.home-jobs .nav-btn svg path { | |
| 2120 | + transition: stroke 0.3s ease; | |
| 2121 | +} | |
| 2122 | + | |
| 2123 | +.home-jobs .nav-btn:hover svg path { | |
| 2124 | + stroke: white; | |
| 2125 | +} | |
| 2126 | +.home-jobs .nav-btns { | |
| 2127 | + text-align: right; | |
| 2128 | +} | |
| 2129 | +.toutes-offres{ | |
| 2130 | + text-align: center; | |
| 2131 | + border: 2px solid #2b546b; | |
| 2132 | + color: #2b546b; | |
| 2133 | + padding: 0px 5px; | |
| 2134 | + border-radius: 35px; | |
| 2135 | +} | |
| 2136 | +.toutes-offres:hover{ | |
| 2137 | + background:#2b546b; | |
| 2138 | +} | |
| 2139 | +.toutes-offres a{ | |
| 2140 | + color:#2b546b; | |
| 2141 | + font-weight: bold; | |
| 2142 | + font-size:19px; | |
| 2143 | + line-height: 25px; | |
| 2144 | + display: inline-block; | |
| 2145 | + margin-top:4px; | |
| 2146 | + width:100%; | |
| 2147 | +} | |
| 2148 | +.toutes-offres:hover a{ | |
| 2149 | + color:#fff; | |
| 2150 | +} | |
| 2151 | +.home-jobs .wpb_wrapper:has(.wpb_wrapper .toutes-offres){ | |
| 2152 | + min-height:420px; | |
| 2153 | + white-space: normal; | |
| 2154 | + display: flex; | |
| 2155 | + flex-direction: column; | |
| 2156 | + justify-content: space-between; | |
| 2157 | +} | |
| 2158 | + | |
| 2159 | +div.wpcf7[data-wpcf7-id="4890"] .wpcf7-not-valid:not(input){ | |
| 2160 | + border: 0px; | |
| 2161 | +} | |
| 2162 | +div.wpcf7 .wpcf7-not-valid::before{ | |
| 2163 | + content: "Ce champ est requis.\A\A"; | |
| 2164 | + color: red; | |
| 2165 | + font-weight: bold; | |
| 2166 | + white-space: pre-line; | |
| 2167 | +} | |
| 2168 | + | |
| 2169 | +.wpcf7-form-control.wpcf7-text, | |
| 2170 | +.wpcf7-form-control.wpcf7-email { | |
| 2171 | + width: 100%; | |
| 2172 | + border-radius: 10px; | |
| 2173 | +} | |
| 2174 | + | |
| 2175 | +a[href*="desabonnement"], | |
| 2176 | +a[href*="désabonnement"] { | |
| 2177 | + display: inline-block; | |
| 2178 | + margin-top: 15px; | |
| 2179 | + color: #1e88e5; | |
| 2180 | + font-size: 14px; | |
| 2181 | + text-decoration: underline; | |
| 2182 | +} | |
| 2183 | + | |
| 2184 | +a[href*="desabonnement"]:hover { | |
| 2185 | + text-decoration: none; | |
| 2186 | +} | |
| 2187 | + | |
| 2188 | +@media (min-width: 992px) { | |
| 2189 | + .footer-6 .col-md-4:first-of-type { | |
| 2190 | + width: 45%; | |
| 2191 | + } | |
| 2192 | + .footer-6 .col-md-4:not(:first-of-type) { | |
| 2193 | + width: 27.5%; | |
| 2194 | + } | |
| 2195 | +} | |
| 2196 | + | |
| 2197 | +@media (min-width: 765px) { | |
| 2198 | + .footer-6 .col-md-4:first-of-type { | |
| 2199 | + border-right:2px solid white; | |
| 2200 | + } | |
| 2201 | +} | |
| 2202 | +.conditions-de-travail { | |
| 2203 | + display: flex; | |
| 2204 | + flex-direction: column; | |
| 2205 | + font-size: 16px; | |
| 2206 | + margin-bottom: 1.5rem; | |
| 2207 | +} | |
| 2208 | + | |
| 2209 | +.ct-row { | |
| 2210 | + display: flex; | |
| 2211 | + gap: 20px; | |
| 2212 | +} | |
| 2213 | + | |
| 2214 | +.ct-label { | |
| 2215 | + width: 300px; | |
| 2216 | + font-weight: bold; | |
| 2217 | + color:#000; | |
| 2218 | + font-size:19px; | |
| 2219 | +} | |
| 2220 | + | |
| 2221 | +.ct-value { | |
| 2222 | + font-size:19px; | |
| 2223 | + color: #000000; | |
| 2224 | +} | |
| 2225 | + | |
| 2226 | +.informations-de-base { | |
| 2227 | + display: flex; | |
| 2228 | + flex-wrap: wrap; | |
| 2229 | + gap: 25px; | |
| 2230 | + align-items: center; | |
| 2231 | + margin-bottom: 1.5rem; | |
| 2232 | + background: #16375E10 ; | |
| 2233 | + width: 300%; | |
| 2234 | + margin-left: -100%; | |
| 2235 | + padding-left: 100%; | |
| 2236 | + padding-top: 15px; | |
| 2237 | + padding-bottom: 15px; | |
| 2238 | +} | |
| 2239 | + | |
| 2240 | +.informations-de-base .info-item { | |
| 2241 | + display: flex; | |
| 2242 | + align-items: center; | |
| 2243 | + gap: 10px; | |
| 2244 | +} | |
| 2245 | + | |
| 2246 | +.informations-de-base .icon svg { | |
| 2247 | + display: inline-block; | |
| 2248 | + vertical-align: middle; | |
| 2249 | +} | |
| 2250 | + | |
| 2251 | +.informations-de-base .info-text { | |
| 2252 | + font-size: 16px; | |
| 2253 | + color: #16375e; | |
| 2254 | + padding-top: 12px; | |
| 2255 | +} | |
| 2256 | + | |
| 2257 | +.apply-buttons { | |
| 2258 | + display: flex; | |
| 2259 | + justify-content: space-between; | |
| 2260 | + flex-wrap: wrap; | |
| 2261 | + gap: 0px; | |
| 2262 | + margin-top: 70px; | |
| 2263 | + width: 300%; | |
| 2264 | + margin-left: -100%; | |
| 2265 | + padding: 30px 100% 200px 100%; | |
| 2266 | + margin-bottom:-170px; | |
| 2267 | +} | |
| 2268 | +.apply-buttons-1 h2, | |
| 2269 | +.apply-buttons-2 h2 { | |
| 2270 | + color: #004071; | |
| 2271 | + font-size: 18px; | |
| 2272 | + font-weight: bold; | |
| 2273 | +} | |
| 2274 | +.apply-buttons-2 h2 { | |
| 2275 | + margin-bottom: 27px; | |
| 2276 | +} | |
| 2277 | +.apply-buttons .application_button.button { | |
| 2278 | + background-color: #004071; | |
| 2279 | + color: #fff; | |
| 2280 | + border: 2px solid #004071; | |
| 2281 | + border-radius: 5px; | |
| 2282 | + font-weight: bold; | |
| 2283 | + font-size: 20px; | |
| 2284 | + width:fit-content; | |
| 2285 | + height:min-content; | |
| 2286 | + padding:9px 25px; | |
| 2287 | + box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3); | |
| 2288 | + margin-bottom:10px; | |
| 2289 | +} | |
| 2290 | +.apply-buttons .application_button.button:hover { | |
| 2291 | + background-color: transparent; | |
| 2292 | + color: #004071; | |
| 2293 | +} | |
| 2294 | + | |
| 2295 | +.apply-buttons .apply-buttons-2 a { | |
| 2296 | + background-color: #004071; | |
| 2297 | + color: #fff; | |
| 2298 | + border: 2px solid #004071; | |
| 2299 | + border-radius: 5px; | |
| 2300 | + font-weight: bold; | |
| 2301 | + font-size: 20px; | |
| 2302 | + padding: 5px 15px; | |
| 2303 | + box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3); | |
| 2304 | +} | |
| 2305 | +.apply-buttons .apply-buttons-2 a:hover { | |
| 2306 | + background-color: transparent; | |
| 2307 | + color: #004071; | |
| 2308 | +} | |
| 2309 | +.job-manager-single-alert-link{ | |
| 2310 | + margin-top: -150px; | |
| 2311 | +} | |
| 2312 | +.job-manager-single-alert-link a{ | |
| 2313 | + color: #57b4b0; | |
| 2314 | + font-weight: 600; | |
| 2315 | +} | |
| 2316 | +.job-manager-single-alert-link a:hover{ | |
| 2317 | + color: #F67E4A; | |
| 2318 | +} | |
| 2319 | +.single-job_listing section{ | |
| 2320 | + padding-bottom: 40px !important; | |
| 2321 | +} | |
| 2322 | + | |
| 2323 | +.liste-jobs-tout ul.job_listings{ | |
| 2324 | + border-top: none !important; | |
| 2325 | + padding: 10px 7% 50px ; | |
| 2326 | + border: none !important; | |
| 2327 | + background:#c6c6b830; | |
| 2328 | +} | |
| 2329 | + | |
| 2330 | +.liste-jobs-tout h2{ | |
| 2331 | + width: 300%; | |
| 2332 | + margin-left: -100%; | |
| 2333 | + padding: 40px 100% 20px 100%; | |
| 2334 | + background: #EFF2F4; | |
| 2335 | + margin-bottom: 0px; | |
| 2336 | + margin-top: -60px; | |
| 2337 | + font-size: 35px; | |
| 2338 | +} | |
| 2339 | + | |
| 2340 | +.liste-jobs-tout .job_filters .showing_jobs{ | |
| 2341 | + border-top: none; | |
| 2342 | +} | |
| 2343 | + | |
| 2344 | +.liste-jobs-tout .job-type-location { | |
| 2345 | + display: flex; | |
| 2346 | + flex-wrap: nowrap; | |
| 2347 | + align-items: center; | |
| 2348 | +} | |
| 2349 | +.liste-jobs-tout .job-listing-link-button { | |
| 2350 | + margin-left: auto; | |
| 2351 | + background: transparent; | |
| 2352 | + border: 2px solid #004071 !important; | |
| 2353 | + color: #004071; | |
| 2354 | + border-radius: 5px; | |
| 2355 | + margin-bottom: 20px; | |
| 2356 | + padding: 5px 10px !important; | |
| 2357 | + font-size: 19px; | |
| 2358 | +} | |
| 2359 | + | |
| 2360 | +.liste-jobs-tout .job-listing-link-button:hover, .liste-jobs-tout .job-listing-link-button:active, .liste-jobs-tout .job-listing-link-button:focus{ | |
| 2361 | + background: #004071; | |
| 2362 | + color: #fff; | |
| 2363 | +} | |
| 2364 | +.liste-jobs-tout .job-title h3 { | |
| 2365 | + font-size: 25px; | |
| 2366 | + margin-top: 20px; | |
| 2367 | + color: #004071; | |
| 2368 | + font-weight: bold; | |
| 2369 | + max-width: 55vw; | |
| 2370 | +} | |
| 2371 | + | |
| 2372 | +.liste-jobs-tout ul.job_listings li.job_listing { | |
| 2373 | + padding: 0px 10px 10px 0px ; | |
| 2374 | + border-bottom: 1px solid #16375E20; | |
| 2375 | +} | |
| 2376 | +.liste-jobs-tout .search_jobs{ | |
| 2377 | + width: 300%; | |
| 2378 | + margin-left: -100%; | |
| 2379 | + padding: 30px 107% 30px; | |
| 2380 | + background:#7cafde82 | |
| 2381 | +} | |
| 2382 | +.liste-jobs-tout .job_types{ | |
| 2383 | + margin-top: -50px; | |
| 2384 | + width: 300%; | |
| 2385 | + margin-left: -100%; | |
| 2386 | + padding: 0 107% 0 !important; | |
| 2387 | +} | |
| 2388 | + | |
| 2389 | +.liste-jobs-tout .showing_jobs{ | |
| 2390 | + width: 300%; | |
| 2391 | + margin-left: -100%; | |
| 2392 | + margin-top:10px; | |
| 2393 | + padding: 0 107% 0; | |
| 2394 | +} | |
| 2395 | +.liste-jobs-tout .search_submit input{ | |
| 2396 | + background: #004071 !important; | |
| 2397 | + border: 2px solid #004071; | |
| 2398 | + color: #fff !important; | |
| 2399 | + margin-right: 10px; | |
| 2400 | + border-radius: 5px; | |
| 2401 | + width: auto; | |
| 2402 | + height:auto; | |
| 2403 | + padding:0px 10px !important; | |
| 2404 | + font-size:19px; | |
| 2405 | +} | |
| 2406 | +.liste-jobs-tout .search_submit input:hover{ | |
| 2407 | + background:#fff !important; | |
| 2408 | + color: #004071 !important; | |
| 2409 | +} | |
| 2410 | + | |
| 2411 | +.job_listing-template-default.single-job_listing div.main-container div.container div.col-sm-10.col-md-8.col-sm-offset-1.col-md-offset-2{ | |
| 2412 | + margin-left:0px; | |
| 2413 | + margin-right:0px; | |
| 2414 | + width: auto; | |
| 2415 | +} | |
| 2416 | + | |
| 2417 | +.boxed.boxed--lg.border--round.bg--white:has(.cat-hero-text){ | |
| 2418 | + background: none; | |
| 2419 | + padding-left: 0px; | |
| 2420 | + padding-right: 0px; | |
| 2421 | + padding-bottom: 0px; | |
| 2422 | + margin-top: 5vh; | |
| 2423 | + margin-bottom: 0px; | |
| 2424 | + min-width: 100vw; | |
| 2425 | + min-height: 15vh; | |
| 2426 | +} | |
| 2427 | +.cat-hero-s-text{ | |
| 2428 | + color: #ffffff !important; | |
| 2429 | + font-size: 35px; | |
| 2430 | + line-height:100px; | |
| 2431 | +} | |
| 2432 | +.cat-hero-b-text{ | |
| 2433 | + color: #ffffff !important; | |
| 2434 | + font-size: 50px; | |
| 2435 | + line-height: 50px; | |
| 2436 | + font-weight: bold; | |
| 2437 | +} | |
| 2438 | +.col-md-10.col-md-offset-1.col-sm-12:has(.cat-hero-text){ | |
| 2439 | + margin-left: 0px; | |
| 2440 | +} | |
| 2441 | + | |
| 2442 | +footer::after { | |
| 2443 | + content: "© Gouvernement du Québec - 2025"; | |
| 2444 | + display: block; | |
| 2445 | + text-align: center; | |
| 2446 | + background-color: #fff; | |
| 2447 | + background-image: url('https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/06/logo_chum.png'); | |
| 2448 | + background-repeat: no-repeat; | |
| 2449 | + background-position: center 20px; | |
| 2450 | + background-size: 95px auto; | |
| 2451 | + padding-top: 100px; | |
| 2452 | + padding-bottom: 10px; | |
| 2453 | + font-size: 14px; | |
| 2454 | + font-weight: 500; | |
| 2455 | + margin-top: 30px; | |
| 2456 | + margin-bottom:-25px; | |
| 2457 | + padding-left: 40px; | |
| 2458 | + padding-right: 40px; | |
| 2459 | + white-space: pre-line; | |
| 2460 | + position: relative; | |
| 2461 | +} | |
| 2462 | + | |
| 2463 | +.job-manager-single-alert-link{ | |
| 2464 | + display: none; | |
| 2465 | +} | |
| 2466 | + | |
| 2467 | +@media only screen and (max-width: 600px) { | |
| 2468 | + .liste-jobs-tout h2{ | |
| 2469 | + margin-top: -160px; | |
| 2470 | + } | |
| 2471 | + .single-job_listing .a2a_kit::before { | |
| 2472 | + content: 'Partager\A' !important; | |
| 2473 | + white-space:pre-line !important; | |
| 2474 | + } | |
| 2475 | + .single-job_listing .a2a_kit{ | |
| 2476 | + display: block !important; | |
| 2477 | + } | |
| 2478 | + .apply-buttons .application_button.button{ | |
| 2479 | + min-width:175px; | |
| 2480 | + } | |
| 2481 | + .conditions-de-travail { | |
| 2482 | + display: block; | |
| 2483 | + } | |
| 2484 | + .ct-row { | |
| 2485 | + display: block; | |
| 2486 | + } | |
| 2487 | + .ct-value::before { | |
| 2488 | + content:'\A'; | |
| 2489 | + white-space:pre-line; | |
| 2490 | + } | |
| 2491 | + .job_description { | |
| 2492 | + font-size: 16px; | |
| 2493 | + } | |
| 2494 | + .single_job_listing .job_description h2 { | |
| 2495 | + padding-top: 10px; | |
| 2496 | + } | |
| 2497 | + .informations-de-base { | |
| 2498 | + display:block; | |
| 2499 | + } | |
| 2500 | + .article__title.text-center h1 { | |
| 2501 | + font-size: 17px; | |
| 2502 | + padding-bottom:170px; | |
| 2503 | + height:36vh; | |
| 2504 | + } | |
| 2505 | + .liste-jobs-tout .job-listing-link span { | |
| 2506 | + display:block; | |
| 2507 | + margin: 10px 0; | |
| 2508 | + padding:0px; | |
| 2509 | + font-size:16px !important; | |
| 2510 | + line-height:20px; | |
| 2511 | + } | |
| 2512 | + .liste-jobs-tout ul.job_listings li.job_listing a.job-listing-link-button{ | |
| 2513 | + margin-top:5px; | |
| 2514 | + margin-bottom:2px; | |
| 2515 | + text-align: center; | |
| 2516 | + } | |
| 2517 | + .liste-jobs-tout .job-type-location{ | |
| 2518 | + display: block; | |
| 2519 | + } | |
| 2520 | + .liste-jobs-tout .job-listing-link span { | |
| 2521 | + display: flex; | |
| 2522 | + align-items: flex-start; | |
| 2523 | + gap: 6px; | |
| 2524 | + } | |
| 2525 | + .liste-jobs-tout .job-type-location .job-type{ | |
| 2526 | + margin-right:0px; | |
| 2527 | + } | |
| 2528 | + .liste-jobs-tout ul.job_listings li.job_listing a{ | |
| 2529 | + min-width: 100%; | |
| 2530 | + } | |
| 2531 | + .liste-jobs-tout .job-title h3{ | |
| 2532 | + max-width: 100% !important; | |
| 2533 | + font-size:18px; | |
| 2534 | + } | |
| 2535 | + .liste-jobs-tout .job_types { | |
| 2536 | + margin-top: 0px !important; | |
| 2537 | + background-color:#7cafde82 !important; | |
| 2538 | + } | |
| 2539 | + .image-container .text span { | |
| 2540 | + font-size: 19px; | |
| 2541 | + } | |
| 2542 | + .image-container .text span | |
| 2543 | + .bar .logo { | |
| 2544 | + max-height: 90px; | |
| 2545 | + margin-top: 0.5px; | |
| 2546 | + } | |
| 2547 | + .bar__module a.btn--demo { | |
| 2548 | + width:100%; | |
| 2549 | + } | |
| 2550 | + .hero-text span:nth-child(2) { | |
| 2551 | + line-height: 40px !important; | |
| 2552 | + } | |
| 2553 | + .home-jobs .wpb_wrapper:has(.wpb_wrapper .toutes-offres) { | |
| 2554 | + min-height:170px; | |
| 2555 | + } | |
| 2556 | + .home-jobs .job-title h3 { | |
| 2557 | + font-size: 18px; | |
| 2558 | + } | |
| 2559 | + .home-jobs .job-card { | |
| 2560 | + width: 100px; | |
| 2561 | + min-width: 275px; | |
| 2562 | + min-height: 400px; | |
| 2563 | + } | |
| 2564 | + .home-jobs .job-listing-link-button { | |
| 2565 | + width: 100%; | |
| 2566 | + margin: 0px !important; | |
| 2567 | + padding: 0; | |
| 2568 | + } | |
| 2569 | + .home-jobs .job-type-location span { | |
| 2570 | + font-size: 16px; | |
| 2571 | + } | |
| 2572 | + .home-jobs .job_listings { | |
| 2573 | + gap: 7px; | |
| 2574 | + } | |
| 2575 | + .home-jobs { | |
| 2576 | + padding:0; | |
| 2577 | + } | |
| 2578 | + .home-jobs .wpb_column:has(.job-listing-wrapper){ | |
| 2579 | + margin-left:-30px; | |
| 2580 | + width: 120%; | |
| 2581 | + } | |
| 2582 | + .banner-container { | |
| 2583 | + padding: 10px 0 !important; | |
| 2584 | + } | |
| 2585 | + .home-chezNous-section .chezNous-btns { | |
| 2586 | + bottom: 30%; | |
| 2587 | + left: 57%; | |
| 2588 | + } | |
| 2589 | + .home-chezNous-section .chezNous-btn { | |
| 2590 | + padding: 0px 2px; | |
| 2591 | + font-size: 16px; | |
| 2592 | + font-weight: 900; | |
| 2593 | + } | |
| 2594 | + .temoignage-section{ | |
| 2595 | + margin-left:-30px; | |
| 2596 | + margin-right:-30px; | |
| 2597 | + margin-top:-10px; | |
| 2598 | + } | |
| 2599 | + h2{ | |
| 2600 | + font-size: 22px; | |
| 2601 | + } | |
| 2602 | + .temoignage-section ul li{ | |
| 2603 | + font-size: 16px; | |
| 2604 | + } | |
| 2605 | + .location-n-cat .location-n-cat:has(.search_keywords) { | |
| 2606 | + display: inline; | |
| 2607 | + } | |
| 2608 | + ul.job_types li label { | |
| 2609 | + display: flex; | |
| 2610 | + align-items: flex-start; | |
| 2611 | + } | |
| 2612 | + ul.job_types li input[type="checkbox"] { | |
| 2613 | + margin-top: 0.2em; | |
| 2614 | + margin-right: 0.5em; | |
| 2615 | + flex-shrink: 0; | |
| 2616 | + } | |
| 2617 | + ul.job_types li label::after { | |
| 2618 | + content: ""; | |
| 2619 | + display: block; | |
| 2620 | + } | |
| 2621 | + .liste-jobs-tout .job_filters .showing_jobs span{ | |
| 2622 | + display: inline-block; | |
| 2623 | + line-height: 20px; | |
| 2624 | + padding: 10px 0 1-0px 0; | |
| 2625 | + } | |
| 2626 | + .cat-hero-s-text { | |
| 2627 | + font-size: 20px; | |
| 2628 | + line-height:0; | |
| 2629 | + } | |
| 2630 | + .cat-hero-b-text { | |
| 2631 | + font-size: 25px; | |
| 2632 | + line-height: 30px; | |
| 2633 | + } | |
| 2634 | + .boxed.boxed--lg.border--round.bg--white:has(.cat-hero-text) { | |
| 2635 | + margin-top: 0; | |
| 2636 | + margin-bottom: 20px; | |
| 2637 | + min-width: 50vw; | |
| 2638 | + } | |
| 2639 | + .liste-jobs-tout h2 { | |
| 2640 | + font-size: 25px; | |
| 2641 | + padding-bottom:0px; | |
| 2642 | + } | |
| 2643 | + | |
| 2644 | + .wpcf7-checkbox .wpcf7-list-item { | |
| 2645 | + width: 100%; | |
| 2646 | + } | |
| 2647 | + .wpcf7-form-control.wpcf7-text, .wpcf7-form-control.wpcf7-email { | |
| 2648 | + width: 100%; | |
| 2649 | + } | |
| 2650 | + h1, .h1 { | |
| 2651 | + font-size: 2em; | |
| 2652 | + line-height: 1em; | |
| 2653 | + } | |
| 2654 | +} | |
| 2655 | + | |
| 2656 | +.single-job_listing .a2a_kit svg path { | |
| 2657 | + fill: #004071 !important; | |
| 2658 | +} | |
| 2659 | +.single-job_listing .a2a_kit .a2a_svg { | |
| 2660 | + background: none !important; | |
| 2661 | +} | |
| 2662 | +.single-job_listing .is-partagez { | |
| 2663 | + display: none; | |
| 2664 | +} | |
| 2665 | +.single-job_listing .a2a_kit::before { | |
| 2666 | + content: "Partager "; | |
| 2667 | + margin-right: 8px; | |
| 2668 | + font-size:18px; | |
| 2669 | + font-weight: bold; | |
| 2670 | + color: #8A898A; | |
| 2671 | +} | |
| 2672 | +.single-job_listing .a2a_kit { | |
| 2673 | + display: flex; | |
| 2674 | + justify-content: flex-end; | |
| 2675 | + align-items: center; | |
| 2676 | + margin-right: 100px; | |
| 2677 | +} | |
| 2678 | +.single-job_listing .a2a_button_twitter { | |
| 2679 | + display: none !important; | |
| 2680 | +} | |
| 2681 | +.statut-emploi-TP { | |
| 2682 | + display: none !important; | |
| 2683 | +} | |
| 2684 | +.col-md-11.col-sm-12.text-right.text-left-xs.text-left-sm { | |
| 2685 | + margin-top: -15px !important; | |
| 2686 | + margin-bottom:15px; | |
| 2687 | +} | |
| 2688 | + | |
| 2689 | +.job-info.job-card a:active, .job-info.job-card a:visited, .job-info.job-card a:focus{ | |
| 2690 | + background: transparent !important; | |
| 2691 | +} | |
| 2692 | + | |
| 2693 | +@media screen and (min-width: 600px) and (max-width: 800px) { | |
| 2694 | + .home-jobs .wpb_wrapper:has(.wpb_wrapper .toutes-offres) { | |
| 2695 | + min-height: 200px; | |
| 2696 | + } | |
| 2697 | + | |
| 2698 | + .toutes-offres { | |
| 2699 | + width: 50%; | |
| 2700 | + } | |
| 2701 | + | |
| 2702 | + .toutes-offres a { | |
| 2703 | + width: 50%; | |
| 2704 | + } | |
| 2705 | + .home-chezNous-section .chezNous-btns { | |
| 2706 | + bottom: 45%; | |
| 2707 | + left: 62%; | |
| 2708 | + } | |
| 2709 | + .home-chezNous-section .chezNous-btn { | |
| 2710 | + padding: 0px 2px; | |
| 2711 | + font-size: 25px; | |
| 2712 | + font-weight: 900; | |
| 2713 | + } | |
| 2714 | + .liste-jobs-tout .job_types { | |
| 2715 | + margin-top: 0px !important; | |
| 2716 | + background-color:#7cafde82 !important; | |
| 2717 | + } | |
| 2718 | + .liste-jobs-tout .job-listing-link span { | |
| 2719 | + display: block; | |
| 2720 | + margin: 10px 0; | |
| 2721 | + padding:0px; | |
| 2722 | + font-size:16px !important; | |
| 2723 | + line-height:20px; | |
| 2724 | + } | |
| 2725 | + .liste-jobs-tout ul.job_listings li.job_listing a.job-listing-link-button{ | |
| 2726 | + margin-top:5px; | |
| 2727 | + margin-bottom:2px; | |
| 2728 | + text-align: center; | |
| 2729 | + } | |
| 2730 | + .liste-jobs-tout .job-type-location{ | |
| 2731 | + display: block; | |
| 2732 | + } | |
| 2733 | + .liste-jobs-tout .job-listing-link span { | |
| 2734 | + display: flex; | |
| 2735 | + align-items: flex-start; | |
| 2736 | + gap: 6px; | |
| 2737 | + } | |
| 2738 | + .liste-jobs-tout .job-type-location .job-type{ | |
| 2739 | + margin-right:0px; | |
| 2740 | + } | |
| 2741 | + .liste-jobs-tout ul.job_listings li.job_listing a{ | |
| 2742 | + min-width: 100%; | |
| 2743 | + } | |
| 2744 | + .liste-jobs-tout .job-title h3{ | |
| 2745 | + max-width: 100% !important; | |
| 2746 | + font-size:25px; | |
| 2747 | + } | |
| 2748 | + .liste-jobs-tout .showing_jobs { | |
| 2749 | + margin-top:0px; | |
| 2750 | + } | |
| 2751 | + .wpcf7-checkbox .wpcf7-list-item { | |
| 2752 | + width: 50%; | |
| 2753 | + } | |
| 2754 | + .wpcf7-form-control.wpcf7-text, .wpcf7-form-control.wpcf7-email { | |
| 2755 | + width: 100%; | |
| 2756 | + } | |
| 2757 | +} | |
| 2758 | + | |
| 2759 | +@media (max-width: 768px) { | |
| 2760 | + .cat-hero-text{ | |
| 2761 | + padding-top:40vh !important; | |
| 2762 | + } | |
| 2763 | + .cat-hero-text{ | |
| 2764 | + margin-left: -30px !important; | |
| 2765 | + padding-top: 50px; | |
| 2766 | + } | |
| 2767 | + .right-section { | |
| 2768 | + margin:0px !important; | |
| 2769 | + } | |
| 2770 | + .col-sm-6:first-of-type{ | |
| 2771 | + border-left:0px !important; | |
| 2772 | + } | |
| 2773 | +} | |
| 2774 | + | |
| 2775 | +.elementor hr{ | |
| 2776 | + margin:25px 0px 10px 0px!important; | |
| 2777 | +} | |
| 2778 | +footer:not(.bg--primary):not(.bg--dark) a{ | |
| 2779 | + color:#fff; | |
| 2780 | +} | |
| 2781 | + | |
| 2782 | +.job-list { | |
| 2783 | + list-style: none; | |
| 2784 | + padding: 0; | |
| 2785 | + font-size: 30px; | |
| 2786 | + font-weight: 300; | |
| 2787 | + line-height: 1.6; | |
| 2788 | + } | |
| 2789 | +.right-section { | |
| 2790 | + display: flex; | |
| 2791 | + flex-direction: column; | |
| 2792 | + justify-content: flex-start; | |
| 2793 | + gap: 35px; | |
| 2794 | + margin-left:50px; | |
| 2795 | +} | |
| 2796 | +@media (max-width: 900px) { | |
| 2797 | + .container { | |
| 2798 | + flex-direction: column; | |
| 2799 | + gap: 40px; | |
| 2800 | + } | |
| 2801 | + .left-section, .right-section { | |
| 2802 | + max-width: 100%; | |
| 2803 | + } | |
| 2804 | +} | |
| 2805 | + | |
| 2806 | +.menu-horizontal > .dropdown > .dropdown__trigger::after { | |
| 2807 | + margin-left: 4px; | |
| 2808 | + content: ""; | |
| 2809 | + display: inline-block; | |
| 2810 | + width: 20px; | |
| 2811 | + height: 20px; | |
| 2812 | + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230066b3'%3E%3Cpath d='M12 13.172l4.95-4.95 1.414 1.414L12 16 5.636 9.636l1.414-1.414L12 13.172z'/%3E%3Cpath d='M12 19.172l4.95-4.95 1.414 1.414L12 22 5.636 15.636l1.414-1.414L12 19.172z'/%3E%3C/svg%3E"); | |
| 2813 | + background-size: contain; | |
| 2814 | + background-repeat: no-repeat; | |
| 2815 | +} | |
| 2816 | +.container{ | |
| 2817 | + width:90vw; | |
| 2818 | + margin-left:5vw; | |
| 2819 | +} | |
| 2820 | +.col-sm-6:first-of-type{ | |
| 2821 | + border-right:1px solid white; | |
| 2822 | + | |
| 2823 | +} | |
| 2824 | +@media (min-width: 900px){ | |
| 2825 | + .col-sm-6:first-of-type{ | |
| 2826 | + width:60%; | |
| 2827 | + padding-bottom:100px; | |
| 2828 | + } | |
| 2829 | +} | |
| 2830 | +@media (min-width: 900px) { | |
| 2831 | + .col-sm-6 { | |
| 2832 | + width:40%; | |
| 2833 | + } | |
| 2834 | +} | |
| 2835 | + | |
| 2836 | +.left-section .link a { | |
| 2837 | + line-height: 1.2em; | |
| 2838 | + display: inline-block; | |
| 2839 | +} | |
| 2840 | +.footer-s .link{ | |
| 2841 | + font-size: 20px ; | |
| 2842 | +} | |
| 2843 | +.left-section { | |
| 2844 | + line-height: 2.2em; | |
| 2845 | + display: inline-block; | |
| 2846 | +} | |
| 2847 | + | |
| 2848 | + | |
| 2849 | +.nav-btn { | |
| 2850 | + border: none; | |
| 2851 | +} | |
| 2852 | +@media (max-width: 800px){ | |
| 2853 | + .left-section a { | |
| 2854 | + font-size:15px; | |
| 2855 | + } | |
| 2856 | + .footer-s .link{ | |
| 2857 | + font-size: 15px ; | |
| 2858 | + } | |
| 2859 | + .right-section { | |
| 2860 | + gap:0;} | |
| 2861 | + | |
| 2862 | + .footer-t { | |
| 2863 | + font-size:20px ; | |
| 2864 | + white-space:nowrap; | |
| 2865 | + } | |
| 2866 | + .col-sm-6:first-of-type{ | |
| 2867 | + border:none; | |
| 2868 | + } | |
| 2869 | +} | |
| 2870 | + | |
| 2871 | +@media (max-width: 767px){ | |
| 2872 | +.col-sm-6:first-of-type{ | |
| 2873 | + border:none; | |
| 2874 | + } | |
| 2875 | +} | |
| 2876 | + | |
| 2877 | +@media screen and (min-width: 1024px) and (max-width: 1700px) { | |
| 2878 | + .slider{ | |
| 2879 | + width:500px; | |
| 2880 | + height:400px; | |
| 2881 | + } | |
| 2882 | +} | |
| 2883 | +@media (min-width: 600px) and (max-width: 1300px) { | |
| 2884 | + .article__title.text-center h1 { | |
| 2885 | + padding-bottom: 240px; | |
| 2886 | + font-size: 30px; | |
| 2887 | + } | |
| 2888 | +} | |
| 2889 | +</style> | |
| 2890 | + <!-- Fonts Plugin CSS - https://fontsplugin.com/ --> | |
| 2891 | + <style> | |
| 2892 | + /* Cached: August 18, 2026 at 1:23am */ | |
| 2893 | +/* cyrillic-ext */ | |
| 2894 | +@font-face { | |
| 2895 | + font-family: 'Montserrat'; | |
| 2896 | + font-style: italic; | |
| 2897 | + font-weight: 100; | |
| 2898 | + font-display: swap; | |
| 2899 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2900 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 2901 | +} | |
| 2902 | +/* cyrillic */ | |
| 2903 | +@font-face { | |
| 2904 | + font-family: 'Montserrat'; | |
| 2905 | + font-style: italic; | |
| 2906 | + font-weight: 100; | |
| 2907 | + font-display: swap; | |
| 2908 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2909 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 2910 | +} | |
| 2911 | +/* vietnamese */ | |
| 2912 | +@font-face { | |
| 2913 | + font-family: 'Montserrat'; | |
| 2914 | + font-style: italic; | |
| 2915 | + font-weight: 100; | |
| 2916 | + font-display: swap; | |
| 2917 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2918 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 2919 | +} | |
| 2920 | +/* latin-ext */ | |
| 2921 | +@font-face { | |
| 2922 | + font-family: 'Montserrat'; | |
| 2923 | + font-style: italic; | |
| 2924 | + font-weight: 100; | |
| 2925 | + font-display: swap; | |
| 2926 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2927 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 2928 | +} | |
| 2929 | +/* latin */ | |
| 2930 | +@font-face { | |
| 2931 | + font-family: 'Montserrat'; | |
| 2932 | + font-style: italic; | |
| 2933 | + font-weight: 100; | |
| 2934 | + font-display: swap; | |
| 2935 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 2936 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 2937 | +} | |
| 2938 | +/* cyrillic-ext */ | |
| 2939 | +@font-face { | |
| 2940 | + font-family: 'Montserrat'; | |
| 2941 | + font-style: italic; | |
| 2942 | + font-weight: 200; | |
| 2943 | + font-display: swap; | |
| 2944 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2945 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 2946 | +} | |
| 2947 | +/* cyrillic */ | |
| 2948 | +@font-face { | |
| 2949 | + font-family: 'Montserrat'; | |
| 2950 | + font-style: italic; | |
| 2951 | + font-weight: 200; | |
| 2952 | + font-display: swap; | |
| 2953 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2954 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 2955 | +} | |
| 2956 | +/* vietnamese */ | |
| 2957 | +@font-face { | |
| 2958 | + font-family: 'Montserrat'; | |
| 2959 | + font-style: italic; | |
| 2960 | + font-weight: 200; | |
| 2961 | + font-display: swap; | |
| 2962 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2963 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 2964 | +} | |
| 2965 | +/* latin-ext */ | |
| 2966 | +@font-face { | |
| 2967 | + font-family: 'Montserrat'; | |
| 2968 | + font-style: italic; | |
| 2969 | + font-weight: 200; | |
| 2970 | + font-display: swap; | |
| 2971 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2972 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 2973 | +} | |
| 2974 | +/* latin */ | |
| 2975 | +@font-face { | |
| 2976 | + font-family: 'Montserrat'; | |
| 2977 | + font-style: italic; | |
| 2978 | + font-weight: 200; | |
| 2979 | + font-display: swap; | |
| 2980 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 2981 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 2982 | +} | |
| 2983 | +/* cyrillic-ext */ | |
| 2984 | +@font-face { | |
| 2985 | + font-family: 'Montserrat'; | |
| 2986 | + font-style: italic; | |
| 2987 | + font-weight: 300; | |
| 2988 | + font-display: swap; | |
| 2989 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2990 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 2991 | +} | |
| 2992 | +/* cyrillic */ | |
| 2993 | +@font-face { | |
| 2994 | + font-family: 'Montserrat'; | |
| 2995 | + font-style: italic; | |
| 2996 | + font-weight: 300; | |
| 2997 | + font-display: swap; | |
| 2998 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2999 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3000 | +} | |
| 3001 | +/* vietnamese */ | |
| 3002 | +@font-face { | |
| 3003 | + font-family: 'Montserrat'; | |
| 3004 | + font-style: italic; | |
| 3005 | + font-weight: 300; | |
| 3006 | + font-display: swap; | |
| 3007 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3008 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3009 | +} | |
| 3010 | +/* latin-ext */ | |
| 3011 | +@font-face { | |
| 3012 | + font-family: 'Montserrat'; | |
| 3013 | + font-style: italic; | |
| 3014 | + font-weight: 300; | |
| 3015 | + font-display: swap; | |
| 3016 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3017 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3018 | +} | |
| 3019 | +/* latin */ | |
| 3020 | +@font-face { | |
| 3021 | + font-family: 'Montserrat'; | |
| 3022 | + font-style: italic; | |
| 3023 | + font-weight: 300; | |
| 3024 | + font-display: swap; | |
| 3025 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3026 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3027 | +} | |
| 3028 | +/* cyrillic-ext */ | |
| 3029 | +@font-face { | |
| 3030 | + font-family: 'Montserrat'; | |
| 3031 | + font-style: italic; | |
| 3032 | + font-weight: 400; | |
| 3033 | + font-display: swap; | |
| 3034 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3035 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3036 | +} | |
| 3037 | +/* cyrillic */ | |
| 3038 | +@font-face { | |
| 3039 | + font-family: 'Montserrat'; | |
| 3040 | + font-style: italic; | |
| 3041 | + font-weight: 400; | |
| 3042 | + font-display: swap; | |
| 3043 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3044 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3045 | +} | |
| 3046 | +/* vietnamese */ | |
| 3047 | +@font-face { | |
| 3048 | + font-family: 'Montserrat'; | |
| 3049 | + font-style: italic; | |
| 3050 | + font-weight: 400; | |
| 3051 | + font-display: swap; | |
| 3052 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3053 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3054 | +} | |
| 3055 | +/* latin-ext */ | |
| 3056 | +@font-face { | |
| 3057 | + font-family: 'Montserrat'; | |
| 3058 | + font-style: italic; | |
| 3059 | + font-weight: 400; | |
| 3060 | + font-display: swap; | |
| 3061 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3062 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3063 | +} | |
| 3064 | +/* latin */ | |
| 3065 | +@font-face { | |
| 3066 | + font-family: 'Montserrat'; | |
| 3067 | + font-style: italic; | |
| 3068 | + font-weight: 400; | |
| 3069 | + font-display: swap; | |
| 3070 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3071 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3072 | +} | |
| 3073 | +/* cyrillic-ext */ | |
| 3074 | +@font-face { | |
| 3075 | + font-family: 'Montserrat'; | |
| 3076 | + font-style: italic; | |
| 3077 | + font-weight: 500; | |
| 3078 | + font-display: swap; | |
| 3079 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3080 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3081 | +} | |
| 3082 | +/* cyrillic */ | |
| 3083 | +@font-face { | |
| 3084 | + font-family: 'Montserrat'; | |
| 3085 | + font-style: italic; | |
| 3086 | + font-weight: 500; | |
| 3087 | + font-display: swap; | |
| 3088 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3089 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3090 | +} | |
| 3091 | +/* vietnamese */ | |
| 3092 | +@font-face { | |
| 3093 | + font-family: 'Montserrat'; | |
| 3094 | + font-style: italic; | |
| 3095 | + font-weight: 500; | |
| 3096 | + font-display: swap; | |
| 3097 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3098 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3099 | +} | |
| 3100 | +/* latin-ext */ | |
| 3101 | +@font-face { | |
| 3102 | + font-family: 'Montserrat'; | |
| 3103 | + font-style: italic; | |
| 3104 | + font-weight: 500; | |
| 3105 | + font-display: swap; | |
| 3106 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3107 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3108 | +} | |
| 3109 | +/* latin */ | |
| 3110 | +@font-face { | |
| 3111 | + font-family: 'Montserrat'; | |
| 3112 | + font-style: italic; | |
| 3113 | + font-weight: 500; | |
| 3114 | + font-display: swap; | |
| 3115 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3116 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3117 | +} | |
| 3118 | +/* cyrillic-ext */ | |
| 3119 | +@font-face { | |
| 3120 | + font-family: 'Montserrat'; | |
| 3121 | + font-style: italic; | |
| 3122 | + font-weight: 600; | |
| 3123 | + font-display: swap; | |
| 3124 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3125 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3126 | +} | |
| 3127 | +/* cyrillic */ | |
| 3128 | +@font-face { | |
| 3129 | + font-family: 'Montserrat'; | |
| 3130 | + font-style: italic; | |
| 3131 | + font-weight: 600; | |
| 3132 | + font-display: swap; | |
| 3133 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3134 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3135 | +} | |
| 3136 | +/* vietnamese */ | |
| 3137 | +@font-face { | |
| 3138 | + font-family: 'Montserrat'; | |
| 3139 | + font-style: italic; | |
| 3140 | + font-weight: 600; | |
| 3141 | + font-display: swap; | |
| 3142 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3143 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3144 | +} | |
| 3145 | +/* latin-ext */ | |
| 3146 | +@font-face { | |
| 3147 | + font-family: 'Montserrat'; | |
| 3148 | + font-style: italic; | |
| 3149 | + font-weight: 600; | |
| 3150 | + font-display: swap; | |
| 3151 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3152 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3153 | +} | |
| 3154 | +/* latin */ | |
| 3155 | +@font-face { | |
| 3156 | + font-family: 'Montserrat'; | |
| 3157 | + font-style: italic; | |
| 3158 | + font-weight: 600; | |
| 3159 | + font-display: swap; | |
| 3160 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3161 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3162 | +} | |
| 3163 | +/* cyrillic-ext */ | |
| 3164 | +@font-face { | |
| 3165 | + font-family: 'Montserrat'; | |
| 3166 | + font-style: italic; | |
| 3167 | + font-weight: 700; | |
| 3168 | + font-display: swap; | |
| 3169 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3170 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3171 | +} | |
| 3172 | +/* cyrillic */ | |
| 3173 | +@font-face { | |
| 3174 | + font-family: 'Montserrat'; | |
| 3175 | + font-style: italic; | |
| 3176 | + font-weight: 700; | |
| 3177 | + font-display: swap; | |
| 3178 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3179 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3180 | +} | |
| 3181 | +/* vietnamese */ | |
| 3182 | +@font-face { | |
| 3183 | + font-family: 'Montserrat'; | |
| 3184 | + font-style: italic; | |
| 3185 | + font-weight: 700; | |
| 3186 | + font-display: swap; | |
| 3187 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3188 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3189 | +} | |
| 3190 | +/* latin-ext */ | |
| 3191 | +@font-face { | |
| 3192 | + font-family: 'Montserrat'; | |
| 3193 | + font-style: italic; | |
| 3194 | + font-weight: 700; | |
| 3195 | + font-display: swap; | |
| 3196 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3197 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3198 | +} | |
| 3199 | +/* latin */ | |
| 3200 | +@font-face { | |
| 3201 | + font-family: 'Montserrat'; | |
| 3202 | + font-style: italic; | |
| 3203 | + font-weight: 700; | |
| 3204 | + font-display: swap; | |
| 3205 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3206 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3207 | +} | |
| 3208 | +/* cyrillic-ext */ | |
| 3209 | +@font-face { | |
| 3210 | + font-family: 'Montserrat'; | |
| 3211 | + font-style: italic; | |
| 3212 | + font-weight: 800; | |
| 3213 | + font-display: swap; | |
| 3214 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3215 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3216 | +} | |
| 3217 | +/* cyrillic */ | |
| 3218 | +@font-face { | |
| 3219 | + font-family: 'Montserrat'; | |
| 3220 | + font-style: italic; | |
| 3221 | + font-weight: 800; | |
| 3222 | + font-display: swap; | |
| 3223 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3224 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3225 | +} | |
| 3226 | +/* vietnamese */ | |
| 3227 | +@font-face { | |
| 3228 | + font-family: 'Montserrat'; | |
| 3229 | + font-style: italic; | |
| 3230 | + font-weight: 800; | |
| 3231 | + font-display: swap; | |
| 3232 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3233 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3234 | +} | |
| 3235 | +/* latin-ext */ | |
| 3236 | +@font-face { | |
| 3237 | + font-family: 'Montserrat'; | |
| 3238 | + font-style: italic; | |
| 3239 | + font-weight: 800; | |
| 3240 | + font-display: swap; | |
| 3241 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3242 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3243 | +} | |
| 3244 | +/* latin */ | |
| 3245 | +@font-face { | |
| 3246 | + font-family: 'Montserrat'; | |
| 3247 | + font-style: italic; | |
| 3248 | + font-weight: 800; | |
| 3249 | + font-display: swap; | |
| 3250 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3251 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3252 | +} | |
| 3253 | +/* cyrillic-ext */ | |
| 3254 | +@font-face { | |
| 3255 | + font-family: 'Montserrat'; | |
| 3256 | + font-style: italic; | |
| 3257 | + font-weight: 900; | |
| 3258 | + font-display: swap; | |
| 3259 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3260 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3261 | +} | |
| 3262 | +/* cyrillic */ | |
| 3263 | +@font-face { | |
| 3264 | + font-family: 'Montserrat'; | |
| 3265 | + font-style: italic; | |
| 3266 | + font-weight: 900; | |
| 3267 | + font-display: swap; | |
| 3268 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3269 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3270 | +} | |
| 3271 | +/* vietnamese */ | |
| 3272 | +@font-face { | |
| 3273 | + font-family: 'Montserrat'; | |
| 3274 | + font-style: italic; | |
| 3275 | + font-weight: 900; | |
| 3276 | + font-display: swap; | |
| 3277 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3278 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3279 | +} | |
| 3280 | +/* latin-ext */ | |
| 3281 | +@font-face { | |
| 3282 | + font-family: 'Montserrat'; | |
| 3283 | + font-style: italic; | |
| 3284 | + font-weight: 900; | |
| 3285 | + font-display: swap; | |
| 3286 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3287 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3288 | +} | |
| 3289 | +/* latin */ | |
| 3290 | +@font-face { | |
| 3291 | + font-family: 'Montserrat'; | |
| 3292 | + font-style: italic; | |
| 3293 | + font-weight: 900; | |
| 3294 | + font-display: swap; | |
| 3295 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3296 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3297 | +} | |
| 3298 | +/* cyrillic-ext */ | |
| 3299 | +@font-face { | |
| 3300 | + font-family: 'Montserrat'; | |
| 3301 | + font-style: normal; | |
| 3302 | + font-weight: 100; | |
| 3303 | + font-display: swap; | |
| 3304 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3305 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3306 | +} | |
| 3307 | +/* cyrillic */ | |
| 3308 | +@font-face { | |
| 3309 | + font-family: 'Montserrat'; | |
| 3310 | + font-style: normal; | |
| 3311 | + font-weight: 100; | |
| 3312 | + font-display: swap; | |
| 3313 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3314 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3315 | +} | |
| 3316 | +/* vietnamese */ | |
| 3317 | +@font-face { | |
| 3318 | + font-family: 'Montserrat'; | |
| 3319 | + font-style: normal; | |
| 3320 | + font-weight: 100; | |
| 3321 | + font-display: swap; | |
| 3322 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3323 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3324 | +} | |
| 3325 | +/* latin-ext */ | |
| 3326 | +@font-face { | |
| 3327 | + font-family: 'Montserrat'; | |
| 3328 | + font-style: normal; | |
| 3329 | + font-weight: 100; | |
| 3330 | + font-display: swap; | |
| 3331 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3332 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3333 | +} | |
| 3334 | +/* latin */ | |
| 3335 | +@font-face { | |
| 3336 | + font-family: 'Montserrat'; | |
| 3337 | + font-style: normal; | |
| 3338 | + font-weight: 100; | |
| 3339 | + font-display: swap; | |
| 3340 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3341 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3342 | +} | |
| 3343 | +/* cyrillic-ext */ | |
| 3344 | +@font-face { | |
| 3345 | + font-family: 'Montserrat'; | |
| 3346 | + font-style: normal; | |
| 3347 | + font-weight: 200; | |
| 3348 | + font-display: swap; | |
| 3349 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3350 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3351 | +} | |
| 3352 | +/* cyrillic */ | |
| 3353 | +@font-face { | |
| 3354 | + font-family: 'Montserrat'; | |
| 3355 | + font-style: normal; | |
| 3356 | + font-weight: 200; | |
| 3357 | + font-display: swap; | |
| 3358 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3359 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3360 | +} | |
| 3361 | +/* vietnamese */ | |
| 3362 | +@font-face { | |
| 3363 | + font-family: 'Montserrat'; | |
| 3364 | + font-style: normal; | |
| 3365 | + font-weight: 200; | |
| 3366 | + font-display: swap; | |
| 3367 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3368 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3369 | +} | |
| 3370 | +/* latin-ext */ | |
| 3371 | +@font-face { | |
| 3372 | + font-family: 'Montserrat'; | |
| 3373 | + font-style: normal; | |
| 3374 | + font-weight: 200; | |
| 3375 | + font-display: swap; | |
| 3376 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3377 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3378 | +} | |
| 3379 | +/* latin */ | |
| 3380 | +@font-face { | |
| 3381 | + font-family: 'Montserrat'; | |
| 3382 | + font-style: normal; | |
| 3383 | + font-weight: 200; | |
| 3384 | + font-display: swap; | |
| 3385 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3386 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3387 | +} | |
| 3388 | +/* cyrillic-ext */ | |
| 3389 | +@font-face { | |
| 3390 | + font-family: 'Montserrat'; | |
| 3391 | + font-style: normal; | |
| 3392 | + font-weight: 300; | |
| 3393 | + font-display: swap; | |
| 3394 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3395 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3396 | +} | |
| 3397 | +/* cyrillic */ | |
| 3398 | +@font-face { | |
| 3399 | + font-family: 'Montserrat'; | |
| 3400 | + font-style: normal; | |
| 3401 | + font-weight: 300; | |
| 3402 | + font-display: swap; | |
| 3403 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3404 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3405 | +} | |
| 3406 | +/* vietnamese */ | |
| 3407 | +@font-face { | |
| 3408 | + font-family: 'Montserrat'; | |
| 3409 | + font-style: normal; | |
| 3410 | + font-weight: 300; | |
| 3411 | + font-display: swap; | |
| 3412 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3413 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3414 | +} | |
| 3415 | +/* latin-ext */ | |
| 3416 | +@font-face { | |
| 3417 | + font-family: 'Montserrat'; | |
| 3418 | + font-style: normal; | |
| 3419 | + font-weight: 300; | |
| 3420 | + font-display: swap; | |
| 3421 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3422 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3423 | +} | |
| 3424 | +/* latin */ | |
| 3425 | +@font-face { | |
| 3426 | + font-family: 'Montserrat'; | |
| 3427 | + font-style: normal; | |
| 3428 | + font-weight: 300; | |
| 3429 | + font-display: swap; | |
| 3430 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3431 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3432 | +} | |
| 3433 | +/* cyrillic-ext */ | |
| 3434 | +@font-face { | |
| 3435 | + font-family: 'Montserrat'; | |
| 3436 | + font-style: normal; | |
| 3437 | + font-weight: 400; | |
| 3438 | + font-display: swap; | |
| 3439 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3440 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3441 | +} | |
| 3442 | +/* cyrillic */ | |
| 3443 | +@font-face { | |
| 3444 | + font-family: 'Montserrat'; | |
| 3445 | + font-style: normal; | |
| 3446 | + font-weight: 400; | |
| 3447 | + font-display: swap; | |
| 3448 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3449 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3450 | +} | |
| 3451 | +/* vietnamese */ | |
| 3452 | +@font-face { | |
| 3453 | + font-family: 'Montserrat'; | |
| 3454 | + font-style: normal; | |
| 3455 | + font-weight: 400; | |
| 3456 | + font-display: swap; | |
| 3457 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3458 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3459 | +} | |
| 3460 | +/* latin-ext */ | |
| 3461 | +@font-face { | |
| 3462 | + font-family: 'Montserrat'; | |
| 3463 | + font-style: normal; | |
| 3464 | + font-weight: 400; | |
| 3465 | + font-display: swap; | |
| 3466 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3467 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3468 | +} | |
| 3469 | +/* latin */ | |
| 3470 | +@font-face { | |
| 3471 | + font-family: 'Montserrat'; | |
| 3472 | + font-style: normal; | |
| 3473 | + font-weight: 400; | |
| 3474 | + font-display: swap; | |
| 3475 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3476 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3477 | +} | |
| 3478 | +/* cyrillic-ext */ | |
| 3479 | +@font-face { | |
| 3480 | + font-family: 'Montserrat'; | |
| 3481 | + font-style: normal; | |
| 3482 | + font-weight: 500; | |
| 3483 | + font-display: swap; | |
| 3484 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3485 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3486 | +} | |
| 3487 | +/* cyrillic */ | |
| 3488 | +@font-face { | |
| 3489 | + font-family: 'Montserrat'; | |
| 3490 | + font-style: normal; | |
| 3491 | + font-weight: 500; | |
| 3492 | + font-display: swap; | |
| 3493 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3494 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3495 | +} | |
| 3496 | +/* vietnamese */ | |
| 3497 | +@font-face { | |
| 3498 | + font-family: 'Montserrat'; | |
| 3499 | + font-style: normal; | |
| 3500 | + font-weight: 500; | |
| 3501 | + font-display: swap; | |
| 3502 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3503 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3504 | +} | |
| 3505 | +/* latin-ext */ | |
| 3506 | +@font-face { | |
| 3507 | + font-family: 'Montserrat'; | |
| 3508 | + font-style: normal; | |
| 3509 | + font-weight: 500; | |
| 3510 | + font-display: swap; | |
| 3511 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3512 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3513 | +} | |
| 3514 | +/* latin */ | |
| 3515 | +@font-face { | |
| 3516 | + font-family: 'Montserrat'; | |
| 3517 | + font-style: normal; | |
| 3518 | + font-weight: 500; | |
| 3519 | + font-display: swap; | |
| 3520 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3521 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3522 | +} | |
| 3523 | +/* cyrillic-ext */ | |
| 3524 | +@font-face { | |
| 3525 | + font-family: 'Montserrat'; | |
| 3526 | + font-style: normal; | |
| 3527 | + font-weight: 600; | |
| 3528 | + font-display: swap; | |
| 3529 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3530 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3531 | +} | |
| 3532 | +/* cyrillic */ | |
| 3533 | +@font-face { | |
| 3534 | + font-family: 'Montserrat'; | |
| 3535 | + font-style: normal; | |
| 3536 | + font-weight: 600; | |
| 3537 | + font-display: swap; | |
| 3538 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3539 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3540 | +} | |
| 3541 | +/* vietnamese */ | |
| 3542 | +@font-face { | |
| 3543 | + font-family: 'Montserrat'; | |
| 3544 | + font-style: normal; | |
| 3545 | + font-weight: 600; | |
| 3546 | + font-display: swap; | |
| 3547 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3548 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3549 | +} | |
| 3550 | +/* latin-ext */ | |
| 3551 | +@font-face { | |
| 3552 | + font-family: 'Montserrat'; | |
| 3553 | + font-style: normal; | |
| 3554 | + font-weight: 600; | |
| 3555 | + font-display: swap; | |
| 3556 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3557 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3558 | +} | |
| 3559 | +/* latin */ | |
| 3560 | +@font-face { | |
| 3561 | + font-family: 'Montserrat'; | |
| 3562 | + font-style: normal; | |
| 3563 | + font-weight: 600; | |
| 3564 | + font-display: swap; | |
| 3565 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3566 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3567 | +} | |
| 3568 | +/* cyrillic-ext */ | |
| 3569 | +@font-face { | |
| 3570 | + font-family: 'Montserrat'; | |
| 3571 | + font-style: normal; | |
| 3572 | + font-weight: 700; | |
| 3573 | + font-display: swap; | |
| 3574 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3575 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3576 | +} | |
| 3577 | +/* cyrillic */ | |
| 3578 | +@font-face { | |
| 3579 | + font-family: 'Montserrat'; | |
| 3580 | + font-style: normal; | |
| 3581 | + font-weight: 700; | |
| 3582 | + font-display: swap; | |
| 3583 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3584 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3585 | +} | |
| 3586 | +/* vietnamese */ | |
| 3587 | +@font-face { | |
| 3588 | + font-family: 'Montserrat'; | |
| 3589 | + font-style: normal; | |
| 3590 | + font-weight: 700; | |
| 3591 | + font-display: swap; | |
| 3592 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3593 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3594 | +} | |
| 3595 | +/* latin-ext */ | |
| 3596 | +@font-face { | |
| 3597 | + font-family: 'Montserrat'; | |
| 3598 | + font-style: normal; | |
| 3599 | + font-weight: 700; | |
| 3600 | + font-display: swap; | |
| 3601 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3602 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3603 | +} | |
| 3604 | +/* latin */ | |
| 3605 | +@font-face { | |
| 3606 | + font-family: 'Montserrat'; | |
| 3607 | + font-style: normal; | |
| 3608 | + font-weight: 700; | |
| 3609 | + font-display: swap; | |
| 3610 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3611 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3612 | +} | |
| 3613 | +/* cyrillic-ext */ | |
| 3614 | +@font-face { | |
| 3615 | + font-family: 'Montserrat'; | |
| 3616 | + font-style: normal; | |
| 3617 | + font-weight: 800; | |
| 3618 | + font-display: swap; | |
| 3619 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3620 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3621 | +} | |
| 3622 | +/* cyrillic */ | |
| 3623 | +@font-face { | |
| 3624 | + font-family: 'Montserrat'; | |
| 3625 | + font-style: normal; | |
| 3626 | + font-weight: 800; | |
| 3627 | + font-display: swap; | |
| 3628 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3629 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3630 | +} | |
| 3631 | +/* vietnamese */ | |
| 3632 | +@font-face { | |
| 3633 | + font-family: 'Montserrat'; | |
| 3634 | + font-style: normal; | |
| 3635 | + font-weight: 800; | |
| 3636 | + font-display: swap; | |
| 3637 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3638 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3639 | +} | |
| 3640 | +/* latin-ext */ | |
| 3641 | +@font-face { | |
| 3642 | + font-family: 'Montserrat'; | |
| 3643 | + font-style: normal; | |
| 3644 | + font-weight: 800; | |
| 3645 | + font-display: swap; | |
| 3646 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3647 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3648 | +} | |
| 3649 | +/* latin */ | |
| 3650 | +@font-face { | |
| 3651 | + font-family: 'Montserrat'; | |
| 3652 | + font-style: normal; | |
| 3653 | + font-weight: 800; | |
| 3654 | + font-display: swap; | |
| 3655 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3656 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3657 | +} | |
| 3658 | +/* cyrillic-ext */ | |
| 3659 | +@font-face { | |
| 3660 | + font-family: 'Montserrat'; | |
| 3661 | + font-style: normal; | |
| 3662 | + font-weight: 900; | |
| 3663 | + font-display: swap; | |
| 3664 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3665 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3666 | +} | |
| 3667 | +/* cyrillic */ | |
| 3668 | +@font-face { | |
| 3669 | + font-family: 'Montserrat'; | |
| 3670 | + font-style: normal; | |
| 3671 | + font-weight: 900; | |
| 3672 | + font-display: swap; | |
| 3673 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3674 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3675 | +} | |
| 3676 | +/* vietnamese */ | |
| 3677 | +@font-face { | |
| 3678 | + font-family: 'Montserrat'; | |
| 3679 | + font-style: normal; | |
| 3680 | + font-weight: 900; | |
| 3681 | + font-display: swap; | |
| 3682 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3683 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3684 | +} | |
| 3685 | +/* latin-ext */ | |
| 3686 | +@font-face { | |
| 3687 | + font-family: 'Montserrat'; | |
| 3688 | + font-style: normal; | |
| 3689 | + font-weight: 900; | |
| 3690 | + font-display: swap; | |
| 3691 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3692 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3693 | +} | |
| 3694 | +/* latin */ | |
| 3695 | +@font-face { | |
| 3696 | + font-family: 'Montserrat'; | |
| 3697 | + font-style: normal; | |
| 3698 | + font-weight: 900; | |
| 3699 | + font-display: swap; | |
| 3700 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3701 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3702 | +} | |
| 3703 | + | |
| 3704 | +:root { | |
| 3705 | +--font-base: Montserrat; | |
| 3706 | +--font-headings: Montserrat; | |
| 3707 | +--font-input: Montserrat; | |
| 3708 | +} | |
| 3709 | +body, #content, .entry-content, .post-content, .page-content, .post-excerpt, .entry-summary, .entry-excerpt, .widget-area, .widget, .sidebar, #sidebar, footer, .footer, #footer, .site-footer { | |
| 3710 | +font-family: "Montserrat"; | |
| 3711 | + } | |
| 3712 | +#site-title, .site-title, #site-title a, .site-title a, .entry-title, .entry-title a, h1, h2, h3, h4, h5, h6, .widget-title, .elementor-heading-title { | |
| 3713 | +font-family: "Montserrat"; | |
| 3714 | +font-weight: 500; | |
| 3715 | + } | |
| 3716 | +button, .button, input, select, textarea, .wp-block-button, .wp-block-button__link { | |
| 3717 | +font-family: "Montserrat"; | |
| 3718 | +font-weight: 500; | |
| 3719 | + } | |
| 3720 | +#site-title, .site-title, #site-title a, .site-title a, #site-logo, #site-logo a, #logo, #logo a, .logo, .logo a, .wp-block-site-title, .wp-block-site-title a { | |
| 3721 | +font-family: "Montserrat"; | |
| 3722 | + } | |
| 3723 | +#site-description, .site-description, #site-tagline, .site-tagline, .wp-block-site-tagline { | |
| 3724 | +font-family: "Montserrat"; | |
| 3725 | + } | |
| 3726 | +.menu, .page_item a, .menu-item a, .wp-block-navigation, .wp-block-navigation-item__content { | |
| 3727 | +font-family: "Montserrat"; | |
| 3728 | + } | |
| 3729 | +.entry-content, .entry-content p, .post-content, .page-content, .post-excerpt, .entry-summary, .entry-excerpt, .excerpt, .excerpt p, .type-post p, .type-page p, .wp-block-post-content, .wp-block-post-excerpt, .elementor, .elementor p { | |
| 3730 | +font-family: "Montserrat"; | |
| 3731 | + } | |
| 3732 | +.wp-block-post-title, .wp-block-post-title a, .entry-title, .entry-title a, .post-title, .post-title a, .page-title, .entry-content h1, #content h1, .type-post h1, .type-page h1, .elementor h1 { | |
| 3733 | +font-family: "Montserrat"; | |
| 3734 | +font-weight: 700; | |
| 3735 | + } | |
| 3736 | +.entry-content h2, .post-content h2, .page-content h2, #content h2, .type-post h2, .type-page h2, .elementor h2 { | |
| 3737 | +font-family: "Montserrat"; | |
| 3738 | +font-weight: 800; | |
| 3739 | + } | |
| 3740 | +.entry-content h3, .post-content h3, .page-content h3, #content h3, .type-post h3, .type-page h3, .elementor h3 { | |
| 3741 | +font-family: "Montserrat"; | |
| 3742 | + } | |
| 3743 | +.entry-content h4, .post-content h4, .page-content h4, #content h4, .type-post h4, .type-page h4, .elementor h4 { | |
| 3744 | +font-family: "Montserrat"; | |
| 3745 | + } | |
| 3746 | +.entry-content h5, .post-content h5, .page-content h5, #content h5, .type-post h5, .type-page h5, .elementor h5 { | |
| 3747 | +font-family: "Montserrat"; | |
| 3748 | + } | |
| 3749 | +.entry-content h6, .post-content h6, .page-content h6, #content h6, .type-post h6, .type-page h6, .elementor h6 { | |
| 3750 | +font-family: "Montserrat"; | |
| 3751 | + } | |
| 3752 | +ul, ol, ul li, ol li, li { | |
| 3753 | +font-family: "Montserrat"; | |
| 3754 | + } | |
| 3755 | +blockquote, .wp-block-quote, blockquote p, .wp-block-quote p { | |
| 3756 | +font-family: "Montserrat"; | |
| 3757 | + } | |
| 3758 | +.widget-title, .widget-area h1, .widget-area h2, .widget-area h3, .widget-area h4, .widget-area h5, .widget-area h6, #secondary h1, #secondary h2, #secondary h3, #secondary h4, #secondary h5, #secondary h6 { | |
| 3759 | +font-family: "Montserrat"; | |
| 3760 | + } | |
| 3761 | +.widget-area, .widget, .sidebar, #sidebar, #secondary { | |
| 3762 | +font-family: "Montserrat"; | |
| 3763 | + } | |
| 3764 | +footer h1, footer h2, footer h3, footer h4, footer h5, footer h6, .footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6, #footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6 { | |
| 3765 | +font-family: "Montserrat"; | |
| 3766 | + } | |
| 3767 | +footer, #footer, .footer, .site-footer { | |
| 3768 | +font-family: "Montserrat"; | |
| 3769 | + } | |
| 3770 | + </style> | |
| 3771 | + <!-- Fonts Plugin CSS --> | |
| 3772 | + <noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript> | |
| 3773 | +<script> | |
| 3774 | +document.addEventListener( 'wpcf7mailsent', function( event ) { | |
| 3775 | + ga('send', 'event', 'Contact Form', 'submit'); | |
| 3776 | +}, false ); | |
| 3777 | +</script> | |
| 3778 | + | |
| 3779 | + | |
| 3780 | +</head> | |
| 3781 | + | |
| 3782 | +<body class="wp-singular job_listing-template-default single single-job_listing postid-54067 wp-theme-stack wp-child-theme-stack-child stack--rounded normal-layout dropdowns--hover active-tabs active-accordions parallax-enable-mobile stack-child wpb-js-composer js-comp-ver-8.7.3 vc_responsive elementor-default elementor-kit-45733" data-smooth-scroll-offset="0" data-smooth-scroll-offset-mobile="0" data-skip-responsive-menu="yes"> | |
| 3783 | + | |
| 3784 | +<a href="#" id="start" title="Start"></a> | |
| 3785 | + | |
| 3786 | +<div class="notification pos-top pos-right search-box bg--white border--bottom" data-animation="from-top" data-notification-link="search-box"> | |
| 3787 | + <form method="get" action="https://chum.carrieresante.gouv.qc.ca/"> | |
| 3788 | + <div class="row"> | |
| 3789 | + <div class="col-md-6 col-md-offset-3 col-sm-8 col-sm-offset-2"> | |
| 3790 | + <input type="search" name="s" placeholder="Type search query and hit enter" /> | |
| 3791 | + </div> | |
| 3792 | + </div><!--end of row--> | |
| 3793 | + </form> | |
| 3794 | +</div><!--end of notification--> | |
| 3795 | +<div class="nav-container"> | |
| 3796 | + | |
| 3797 | + <div class="bar bar--sm visible-xs original--bg bar--mobile-sticky" data-scroll-class="200px:pos-fixed"> | |
| 3798 | + <div class="container"> | |
| 3799 | + <div class="row"> | |
| 3800 | + <div class="col-xs-8 col-sm-10"> | |
| 3801 | + | |
| 3802 | +<a href="https://chum.carrieresante.gouv.qc.ca/" class="logo-holder"> | |
| 3803 | + <img class="logo logo-dark" alt="Logo Etablissement" src="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/06/logo_chum.png" /> | |
| 3804 | + <img class="logo logo-light" alt="Logo Etablissement" src="" /> | |
| 3805 | +</a> </div> | |
| 3806 | + <div class="col-xs-4 col-sm-2 text-right mobile-header"> | |
| 3807 | + <a href="#" class="hamburger-toggle" data-toggle-class="#menu1;hidden-xs"> | |
| 3808 | + <i class="icon--sm stack-interface stack-menu"></i> | |
| 3809 | + </a> | |
| 3810 | + </div> | |
| 3811 | + </div><!--end of row--> | |
| 3812 | + </div><!--end of container--> | |
| 3813 | + </div><!--end bar--> | |
| 3814 | + | |
| 3815 | + <nav id="menu1" class="bar bar--sm bar-1 hidden-xs hiddem-sm original--bg" data-scroll-class="200px:pos-fixed"> | |
| 3816 | + <div class="container"> | |
| 3817 | + <div class="row"> | |
| 3818 | + <div class="col-md-1 col-sm-2 hidden-xs"> | |
| 3819 | + <div class="bar__module"> | |
| 3820 | + | |
| 3821 | +<a href="https://chum.carrieresante.gouv.qc.ca/" class="logo-holder"> | |
| 3822 | + <img class="logo logo-dark" alt="Logo Etablissement" src="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/06/logo_chum.png" /> | |
| 3823 | + <img class="logo logo-light" alt="Logo Etablissement" src="" /> | |
| 3824 | +</a> | |
| 3825 | + </div><!--end module--> | |
| 3826 | + </div> | |
| 3827 | + <div class="col-md-11 col-sm-12 text-right text-left-xs text-left-sm"> | |
| 3828 | + <div class="bar__module"> | |
| 3829 | + <ul id="menu-header-fr" class="menu-horizontal text-left"><li id="menu-item-4481" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-4481 dropdown dropdown--hover"><a href="#" class="dropdown__trigger"><span>Emplois</span></a><div class="dropdown__container"><div class="container"><div class="row"><div class="dropdown__content col-md-4 col-sm-4"><ul class="menu-vertical"> <li id="menu-item-45752" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45752"><a href="https://chum.carrieresante.gouv.qc.ca/soins-infirmiers-et-cardiorespiratoires/">Soins infirmiers et cardiorespiratoires</a></li> | |
| 3830 | + <li id="menu-item-45750" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45750"><a href="https://chum.carrieresante.gouv.qc.ca/gestion/">Gestion</a></li> | |
| 3831 | + <li id="menu-item-45749" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45749"><a href="https://chum.carrieresante.gouv.qc.ca/personnel-de-ladministration/">Personnel de l’administration</a></li> | |
| 3832 | + <li id="menu-item-45753" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45753"><a href="https://chum.carrieresante.gouv.qc.ca/physique-et-genie-biomedical/">Physique et génie biomédical</a></li> | |
| 3833 | + <li id="menu-item-46249" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-46249"><a href="https://chum.carrieresante.gouv.qc.ca/professionnel-le-et-technicien-ne-de-la-sante-et-des-services-sociaux/">Professionnel.le et technicien.ne de la santé et des services sociaux</a></li> | |
| 3834 | + <li id="menu-item-45751" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45751"><a href="https://chum.carrieresante.gouv.qc.ca/assistance-a-la-personne-services-et-metiers/">Assistance à la personne – services et métiers</a></li> | |
| 3835 | +</ul></div></div></div></div></li> | |
| 3836 | +<li id="menu-item-20423" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20423"><a href="https://chum-recrutement.carrieresante.gouv.qc.ca">Dépose ton CV</a></li> | |
| 3837 | +<li id="menu-item-20422" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20422"><a href="https://chum.carrieresante.gouv.qc.ca/alerte-emplois/">Alerte emploi</a></li> | |
| 3838 | +<li id="menu-item-4839" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4839"><a href="https://chum.carrieresante.gouv.qc.ca/nous-joindre/">Nous joindre</a></li> | |
| 3839 | +</ul></div> | |
| 3840 | + | |
| 3841 | +<div class="bar__module stack-header-buttons"> | |
| 3842 | + | |
| 3843 | + | |
| 3844 | + | |
| 3845 | + <a | |
| 3846 | + class="btn btn--sm btn--demo" | |
| 3847 | + href="https://chum-recrutement.carrieresante.gouv.qc.ca" | |
| 3848 | + target="" | |
| 3849 | + > | |
| 3850 | + <span class="btn__text">Mon profil</span> | |
| 3851 | + </a> | |
| 3852 | + | |
| 3853 | + | |
| 3854 | +</div><!--end module--> </div> | |
| 3855 | + </div><!--end of row--> | |
| 3856 | + </div><!--end of container--> | |
| 3857 | + </nav><!--end bar--> | |
| 3858 | + | |
| 3859 | +</div> | |
| 3860 | +<div class="main-container"> | |
| 3861 | + | |
| 3862 | + | |
| 3863 | +<section> | |
| 3864 | + <div class="container"> | |
| 3865 | + <div class="row"> | |
| 3866 | + | |
| 3867 | + <div class="col-sm-10 col-md-8 col-sm-offset-1 col-md-offset-2"> | |
| 3868 | + <article> | |
| 3869 | + | |
| 3870 | + <div class="article__title text-center"> | |
| 3871 | + <h1 class="h2">Candidat(e) à l’exercice de la profession infirmière</h1> </div><!--end article title--> | |
| 3872 | + <span>10 juillet 2026</span> | <span></span> | |
| 3873 | + <div class="article__body post-content"> | |
| 3874 | + | |
| 3875 | + <div class="featured-image-holder"> | |
| 3876 | + </div> | |
| 3877 | + | |
| 3878 | + <div class="single_job_listing"> | |
| 3879 | + | |
| 3880 | +<ul class="job-listing-meta meta"> | |
| 3881 | + | |
| 3882 | + | |
| 3883 | + <li class="job-type temps-complet">TC - Temps complet</li> | |
| 3884 | + | |
| 3885 | + | |
| 3886 | + <li class="location"><a class="google_map_link" href="https://maps.google.com/maps?q=CHUM&zoom=14&size=512x512&maptype=roadmap&sensor=false" target="_blank">CHUM</a></li> | |
| 3887 | + | |
| 3888 | + <li class="date-posted"><time datetime="2026-07-10">Publié il y a 1 mois</time></li> | |
| 3889 | + | |
| 3890 | + | |
| 3891 | + | |
| 3892 | + </ul> | |
| 3893 | + | |
| 3894 | + <div class="before-job"> | |
| 3895 | + <div class="job_application application"> | |
| 3896 | + | |
| 3897 | + <button id="applyButton_6a84f04608fe5" class="application_button button">Postuler</button> | |
| 3898 | + <script> | |
| 3899 | + document.getElementById('applyButton_6a84f04608fe5').addEventListener('click', function() { | |
| 3900 | + window.open('https://chum-recrutement.carrieresante.gouv.qc.ca/Emploi/Index/Consulter?code=2026-001603', '_blank'); | |
| 3901 | + }); | |
| 3902 | + </script> | |
| 3903 | + | |
| 3904 | + </div> | |
| 3905 | + </div> | |
| 3906 | + | |
| 3907 | + <div class="job_description"> | |
| 3908 | + | |
| 3909 | + <div class="informations-de-base"><div class="info-item"><span class="icon"><svg class="svg-location" xmlns="http://www.w3.org/2000/svg" width="17.384" height="24" viewBox="0 0 17.384 24"><path d="M8.692,0A8.7,8.7,0,0,0,0,8.692C0,14.64,7.778,23.372,8.11,23.74a.783.783,0,0,0,1.165,0c.331-.369,8.11-9.1,8.11-15.049A8.7,8.7,0,0,0,8.692,0m0,13.065a4.373,4.373,0,1,1,4.373-4.373,4.378,4.378,0,0,1-4.373,4.373" fill="#16375e"/></svg></span><span class="info-text">CHUM</span></div><div class="info-item"><span class="icon"><svg class="svg-salary" xmlns="http://www.w3.org/2000/svg" width="22" height="26" viewBox="0 0 22 26"><path d="M.6,7.913A.594.594,0,0,1,0,7.32V5.539A2.375,2.375,0,0,1,2.374,3.165H4.748V.593A.594.594,0,0,1,5.343,0H7.32a.593.593,0,0,1,.593.593V3.165h6.331V.593a.594.594,0,0,1,.6-.593h1.977a.593.593,0,0,1,.593.593V3.165h2.374a2.375,2.375,0,0,1,2.374,2.374V7.32a.593.593,0,0,1-.593.593ZM21.564,9.5a.593.593,0,0,1,.593.593v12.86a2.375,2.375,0,0,1-2.374,2.374H2.374A2.375,2.375,0,0,1,0,22.949V10.089A.594.594,0,0,1,.6,9.5Zm-5.879,3.34a.591.591,0,0,0-.838,0L9.6,18.036,7.329,15.742a.6.6,0,0,0-.84,0L5.084,17.133a.594.594,0,0,0,0,.84L9.167,22.09a.589.589,0,0,0,.838,0l7.071-7.014a.591.591,0,0,0,0-.838Z" fill="#16375e"/></svg></span><span class="info-text">Entre 26,92 $ et 26,92 $/heure</span></div><div class="info-item"><span class="icon"><svg class="svg-status" xmlns="http://www.w3.org/2000/svg" width="27" height="16" viewBox="0 0 27 16"><path d="M26.882,1.344V14.785a1.345,1.345,0,0,1-1.344,1.344H1.344A1.345,1.345,0,0,1,0,14.785V1.344A1.345,1.345,0,0,1,1.344,0H25.538a1.345,1.345,0,0,1,1.344,1.344M4.7,2.016H2.016V4.7A2.687,2.687,0,0,0,4.7,2.016m0,12.1a2.687,2.687,0,0,0-2.688-2.688v2.688ZM16.8,8.065c0-2.228-1.5-4.032-3.36-4.032s-3.36,1.8-3.36,4.032,1.5,4.032,3.36,4.032,3.36-1.8,3.36-4.032m8.065-6.049H22.178A2.687,2.687,0,0,0,24.866,4.7Zm0,9.409a2.687,2.687,0,0,0-2.688,2.688h2.688Z" fill="#16375e"/></svg></span><span class="info-text">TC - Temps complet</span></div></div> <h2>Mandat</h2> | |
| 3910 | +<div class="default-text"><span></p> | |
| 3911 | +<p>Le CHUM est un hôpital universitaire à la fois innovant et humain, au service des patient(es) et du réseau. Il offre les meilleurs soins, spécialisés et surspécialisés à toute la population québécoise. Grâce à ses expertises uniques, la recherche et ses innovations, le CHUM améliore la santé globale de la population. La communauté CHUM est portée par l’audace, nourrie par l’apprentissage continu, unie par la collaboration et guidée par la bienveillance. Travailler au CHUM, c’est faire partie d’une équipe dynamique, humaine et engagée, où chacun(ne) contribue à l’excellence des soins et l’avancement des connaissances, au profit de la population de tout le Québec.<br />•<span style="white-space:pre"> </span>Tu aimes partager tes idées avec celles de tes collègues pour favoriser une bonne collaboration dans ton équipe de travail<br />•<span style="white-space:pre"> </span>Tu prends à cœur tes responsabilités et ta capacité à tout planifier est une force<br />•<span style="white-space:pre"> </span>Tu as la capacité de comprendre et de ressentir ce que les patients éprouvent en faisant preuve d’une grande écoute<br />•<span style="white-space:pre"> </span>Tes expériences de stage variées t’ont permis de développer ton professionnalisme et ta capacité à faire face aux changements</p> | |
| 3912 | +<p><strong>Au CHUM, voilà ce qu’on offre</strong><br />•<span style="white-space:pre"> </span>Postes permanents à temps complet et temps partiel à 7, 8 ou 9 jours par quinzaine, à l’équipe volante<br />•<span style="white-space:pre"> </span>Stabilisation long terme dans une de nos nombreuses spécialités<br />•<span style="white-space:pre"> </span>Affectation selon tes intérêts cliniques<br />•<span style="white-space:pre"> </span>Quart de rotation<br />•<span style="white-space:pre"> </span>1 fin de semaine sur 2<strong></strong></p> | |
| 3913 | +<p></span></div> | |
| 3914 | +<h2>Exigences</h2> | |
| 3915 | +<div class="default-text"><span></p> | |
| 3916 | +<p>•<span style="white-space:pre"> </span>Détenir un diplôme d’études collégiales en soins infirmiers ou un baccalauréat en sciences infirmières ou en voie d’obtention.<br />•<span style="white-space:pre"> </span>Avoir une attestation d’exercice à titre de candidat(e) à l’exercice de la profession d’infirmier(ère) émise par l’OIIQ.</p> | |
| 3917 | +<p><strong>Compétences recherchées</strong><br />•<span style="white-space:pre"> </span>Autonomie<br />•<span style="white-space:pre"> </span>Capacité à travailler dans un contexte de changement<br />•<span style="white-space:pre"> </span>Capacité d’adaptation<br />•<span style="white-space:pre"> </span>Empathie<br />•<span style="white-space:pre"> </span>Créativité<br />•<span style="white-space:pre"> </span>Professionnalisme<br />•<span style="white-space:pre"> </span>Compétences relationnelles, travail d’équipe et collaboration intra et interprofessionnelle<br />•<span style="white-space:pre"> </span>Approche patient/Famille<br />•<span style="white-space:pre"> </span>Organisation du travail<br />•<span style="white-space:pre"> </span>Gestion de soi</p> | |
| 3918 | +<p><strong>Pourquoi choisir le CHUM</strong><br />• Pour un environnement de travail stimulant où le travail d’équipe et la convivialité occupent une place importante;<br />• Pour son programme d’accueil, d’orientation et d’intégration basé sur une approche par compétences en lien avec la spécialité choisie (minimum 15 jours d’orientation)<br />• Pour ses apprentissages innovants : formations en ligne, simulations avec mannequin haute-fidélité, simulateurs virtuels<br />• Pour son aménagement d’horaire favorisant la poursuite de tes études<br />• Pour son comité relève jeunesse qui t’accompagneras à réussir ton examen de l’OIIQ<br />• Pour son programme de rabais-employé (restaurant, santé et bien-être, etc.)<br />• 4 semaines de vacances payées après 1 année de travail à temps complet <br />• 13 congés fériés <br />• 9.6 jours de maladie payés, monnayables en décembre de chaque année <br />• Fonds de pension à prestations déterminées <br />• Régime d’assurances collectives <br />• Station de métro Champ-de-Mars reliée au CHUM par un tunnel</p> | |
| 3919 | +<p>Nous remercions toutes les personnes qui poseront leur candidature, mais ne communiquerons qu’avec celles retenues pour un test ou une entrevue. </p> | |
| 3920 | +<p><strong>Diplôme obtenu hors Québec </strong>: <strong>Nous exigeons l</strong>’<strong>évaluation comparative des études émise par le ministère de l’Immigration de la Francisation et de l’Intégration</strong> : https://www.quebec.ca/immigration/travailler-quebec/faire-reconnaitre-competences-acquises-etranger/obtenir-evaluation-comparative</p> | |
| 3921 | +<p>Il est « essentiel » de joindre votre CV au présent formulaire pour que votre candidature soit considérée </p> | |
| 3922 | +<p> </p> | |
| 3923 | +<p> </p> | |
| 3924 | +<p></span></div> | |
| 3925 | + <p> | |
| 3926 | + <h2>Accès à l'égalité en emploi</h2> | |
| 3927 | + Conformément à la <b>Loi sur l'Accès à l'égalité en emploi</b>, tous les établissements de santé et de services sociaux | |
| 3928 | + appliquent un programme d'accès à l'égalité. De ce fait, les personnes issues des groupes visés | |
| 3929 | + (femme, autochtone, minorité visible, minorité ethnique et personne handicapée) sont encouragées à faire parvenir leur | |
| 3930 | + candidature. De plus, des mesures d'adaptation peuvent être offertes aux personnes handicapées en fonction de leurs | |
| 3931 | + besoins. Selon le contexte, le genre masculin ou féminin utilisé dans les affichages désigne aussi bien les femmes que | |
| 3932 | + les hommes. | |
| 3933 | + </p> | |
| 3934 | + </div> | |
| 3935 | + <hr><div class="conditions-de-travail"><div class="ct-row"><span class="ct-label">Catégorie :</span><span class="ct-value">Soins infirmiers et cardiorespiratoires</span></div><div class="ct-row"><span class="ct-label">Période salariale :</span><span class="ct-value">Horaire</span></div><div class="ct-row"><span class="ct-label">Durée :</span><span class="ct-value">Postes permanents</span></div><div class="ct-row"><span class="ct-label">Heures par semaine :</span><span class="ct-value">26 à 37.5</span></div><div class="ct-row"><span class="ct-label">Date d'affichage :</span><span class="ct-value">du 2026-07-10 à 2027-03-31</span></div></div> | |
| 3936 | + <div class="apply-buttons"> | |
| 3937 | + <div class="apply-buttons-1"> | |
| 3938 | + <h2>Cet emploi t'intéresse?</h2> | |
| 3939 | + <div class="job_application application"> | |
| 3940 | + | |
| 3941 | + <button id="applyButton_6a84f04609fa9" class="application_button button">Postuler</button> | |
| 3942 | + <script> | |
| 3943 | + document.getElementById('applyButton_6a84f04609fa9').addEventListener('click', function() { | |
| 3944 | + window.open('https://chum-recrutement.carrieresante.gouv.qc.ca/Emploi/Index/Consulter?code=2026-001603', '_blank'); | |
| 3945 | + }); | |
| 3946 | + </script> | |
| 3947 | + | |
| 3948 | + </div> | |
| 3949 | + </div> | |
| 3950 | + <div class="apply-buttons-2"> | |
| 3951 | + <h2>Tu as des questions ou besoin d’information?</h2> | |
| 3952 | + <div> | |
| 3953 | + <a href="https://chum.carrieresante.gouv.qc.ca/nous-joindre/" rel="noopener">Nous joindre</a> | |
| 3954 | + </div> | |
| 3955 | + </div> | |
| 3956 | + </div> | |
| 3957 | + | |
| 3958 | + </div> | |
| 3959 | + | |
| 3960 | +<div class="addtoany_share_save_container addtoany_content addtoany_content_bottom"><div class="addtoany_header">Partagez :</div><div class="a2a_kit a2a_kit_size_32 addtoany_list" data-a2a-url="https://chum.carrieresante.gouv.qc.ca/poste/candidat-e-a-l-exercice-de-la-profession-infirmiere-3/" data-a2a-title="Candidat(e) à l’exercice de la profession infirmière"><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fcandidat-e-a-l-exercice-de-la-profession-infirmiere-3%2F&linkname=Candidat%28e%29%20%C3%A0%20l%E2%80%99exercice%20de%20la%20profession%20infirmi%C3%A8re" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fcandidat-e-a-l-exercice-de-la-profession-infirmiere-3%2F&linkname=Candidat%28e%29%20%C3%A0%20l%E2%80%99exercice%20de%20la%20profession%20infirmi%C3%A8re" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fcandidat-e-a-l-exercice-de-la-profession-infirmiere-3%2F&linkname=Candidat%28e%29%20%C3%A0%20l%E2%80%99exercice%20de%20la%20profession%20infirmi%C3%A8re" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fcandidat-e-a-l-exercice-de-la-profession-infirmiere-3%2F&linkname=Candidat%28e%29%20%C3%A0%20l%E2%80%99exercice%20de%20la%20profession%20infirmi%C3%A8re" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fcandidat-e-a-l-exercice-de-la-profession-infirmiere-3%2F&linkname=Candidat%28e%29%20%C3%A0%20l%E2%80%99exercice%20de%20la%20profession%20infirmi%C3%A8re" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share"></a></div></div> <strong>Partagez :</strong> <div class="a2a_kit a2a_kit_size_32 addtoany_list" data-a2a-url="https://chum.carrieresante.gouv.qc.ca/poste/candidat-e-a-l-exercice-de-la-profession-infirmiere-3/" data-a2a-title="Candidat(e) à l’exercice de la profession infirmière"><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fcandidat-e-a-l-exercice-de-la-profession-infirmiere-3%2F&linkname=Candidat%28e%29%20%C3%A0%20l%E2%80%99exercice%20de%20la%20profession%20infirmi%C3%A8re" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fcandidat-e-a-l-exercice-de-la-profession-infirmiere-3%2F&linkname=Candidat%28e%29%20%C3%A0%20l%E2%80%99exercice%20de%20la%20profession%20infirmi%C3%A8re" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fcandidat-e-a-l-exercice-de-la-profession-infirmiere-3%2F&linkname=Candidat%28e%29%20%C3%A0%20l%E2%80%99exercice%20de%20la%20profession%20infirmi%C3%A8re" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fcandidat-e-a-l-exercice-de-la-profession-infirmiere-3%2F&linkname=Candidat%28e%29%20%C3%A0%20l%E2%80%99exercice%20de%20la%20profession%20infirmi%C3%A8re" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fcandidat-e-a-l-exercice-de-la-profession-infirmiere-3%2F&linkname=Candidat%28e%29%20%C3%A0%20l%E2%80%99exercice%20de%20la%20profession%20infirmi%C3%A8re" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share"></a></div> <div class="post__tags"> | |
| 3961 | + </div> | |
| 3962 | + | |
| 3963 | + </div> | |
| 3964 | + | |
| 3965 | + | |
| 3966 | + </article><!--end item--> | |
| 3967 | + </div> | |
| 3968 | + | |
| 3969 | + | |
| 3970 | + </div><!--end of row--> | |
| 3971 | + </div><!--end of container--> | |
| 3972 | +</section> | |
| 3973 | + | |
| 3974 | +<footer class="footer-6 unpad--bottom bg--secondary"> | |
| 3975 | + <div class="container"> | |
| 3976 | + <div class="row"> | |
| 3977 | + <div class="col-sm-6"><div id="block-17" class="widget widget_block sidebar__element"><p><span class="left-section"><br /> | |
| 3978 | +<span class="footer-t">Emplois disponibles</span></p> | |
| 3979 | +<p><span class="footer-s"><span class="link"><a href="https://chum.carrieresante.gouv.qc.ca/soins-infirmiers-et-cardiorespiratoires/" rel="noopener" >Soins infirmiers et cardiorespiratoires</a></span><br /> | |
| 3980 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/gestion/" rel="noopener" >Gestion</a></span><br /> | |
| 3981 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/personnel-de-ladministration/" rel="noopener" >Personnel de bureau,professionnel.le et technicien.ne de l'administration</a></span><br /> | |
| 3982 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/physique-et-genie-biomedical/" rel="noopener" >Physique et génie biomédical</a></span><br /> | |
| 3983 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/professionnel-le-et-technicien-ne-de-la-sante-et-des-services-sociaux/" rel="noopener" >Professionnel.le et technicien.ne de la santé et des services sociaux</a></span><br /> | |
| 3984 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/assistance-a-la-personne-services-et-metiers/" rel="noopener" >Assistance à la personne, emplois de services et métiers</a></span><br /> | |
| 3985 | +</span><br /></p> | |
| 3986 | +</div></div><div class="col-sm-6"><div id="block-22" class="widget widget_block sidebar__element"><div class="right-section"> | |
| 3987 | +<p><span class="footer"><a href="https://www.chumontreal.qc.ca/" target="_blank" rel="noopener" class="footer-t">Découvrir le CHUM</a><br /> | |
| 3988 | + <a href="https://www.chumontreal.qc.ca/enseignement-academie/stages-chum" rel="noopener" class="footer-t" target="_blank">Trouver un stage</a><br /> | |
| 3989 | + <a href="https://www.chumontreal.qc.ca/repertoire/service-benevolat-animation-loisirs" rel="noopener" class="footer-t" target="_blank">Devenir bénévole</a><br /> | |
| 3990 | +</span></p> | |
| 3991 | +<div class="footer-with-b"> | |
| 3992 | + <a href="https://chum.carrieresante.gouv.qc.ca/nous-joindre/" rel="noopener" class="footer-b">Nous joindre</a><br /> | |
| 3993 | + <a href="https://chum-recrutement.carrieresante.gouv.qc.ca" target="_blank" rel="noopener" class="footer-b">Dépose ton CV</a> | |
| 3994 | +</div> | |
| 3995 | +</div> | |
| 3996 | +</div></div><div class="clear"></div> </div><!--end of row--> | |
| 3997 | + </div><!--end of container--> | |
| 3998 | + <div class="footer__lower text-center-xs"> | |
| 3999 | + <div class="container"> | |
| 4000 | + <div class="row"> | |
| 4001 | + <div class="col-sm-3"> | |
| 4002 | + | |
| 4003 | + </div> | |
| 4004 | + <div class="col-sm-6 footer-stack-copyright"> | |
| 4005 | + <div class="menu-footer-menu-container"><ul id="menu-footer-menu" class="menu"><li id="menu-item-4840" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4840"><a href="https://chum.carrieresante.gouv.qc.ca/politique-de-confidentialite/">Politique de confidentialité</a></li> | |
| 4006 | +</ul></div> Copyright © 2026 - Makila <br> | |
| 4007 | + </div> | |
| 4008 | + <div class="col-sm-3 text-right text-center-xs"> | |
| 4009 | + | |
| 4010 | + </div> | |
| 4011 | + </div><!--end of row--> | |
| 4012 | + </div><!--end of container--> | |
| 4013 | + </div> | |
| 4014 | +</footer> | |
| 4015 | +</div><!-- /main-container --> | |
| 4016 | + | |
| 4017 | +<script type="text/javascript"> | |
| 4018 | +(function(){var s = document.getElementsByTagName("script")[0]; | |
| 4019 | +var b = document.createElement("script"); | |
| 4020 | +b.type = "text/javascript";b.async = true; | |
| 4021 | +b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js"; | |
| 4022 | +s.parentNode.insertBefore(b, s);})(); | |
| 4023 | +</script> | |
| 4024 | + | |
| 4025 | +<script type="speculationrules"> | |
| 4026 | +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/stack-child/*","/wp-content/themes/stack/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} | |
| 4027 | +</script> | |
| 4028 | +<!-- WP Job Manager Structured Data --> | |
| 4029 | +<script type="application/ld+json">{"@context":"http:\/\/schema.org\/","@type":"JobPosting","datePosted":"2026-07-10T00:00:00-04:00","validThrough":"2027-03-31T23:59:59-04:00","title":"Candidat(e) \u00e0 l\u2019exercice de la profession infirmi\u00e8re","description":"<h2>Mandat<\/h2>\n<div class=\"default-text\"><span><\/p>\n<p>Le CHUM est un h\u00f4pital universitaire \u00e0 la fois innovant et humain, au service des patient(es) et du r\u00e9seau. Il offre les meilleurs soins, sp\u00e9cialis\u00e9s et sursp\u00e9cialis\u00e9s \u00e0 toute la population qu\u00e9b\u00e9coise. Gr\u00e2ce \u00e0 ses expertises uniques, la recherche et ses innovations, le CHUM am\u00e9liore la sant\u00e9 globale de la population. La communaut\u00e9 CHUM est port\u00e9e par l&rsquo;audace, nourrie par l&rsquo;apprentissage continu, unie par la collaboration et guid\u00e9e par la bienveillance. Travailler au CHUM, c&rsquo;est faire partie d&rsquo;une \u00e9quipe dynamique, humaine et engag\u00e9e, o\u00f9 chacun(ne) contribue \u00e0 l&rsquo;excellence des soins et l&rsquo;avancement des connaissances, au profit de la population de tout le Qu\u00e9bec.<br \/>\u2022<span style=\"white-space:pre\"> <\/span>Tu aimes partager tes id\u00e9es avec celles de tes coll\u00e8gues pour favoriser une bonne collaboration dans ton \u00e9quipe de travail<br \/>\u2022<span style=\"white-space:pre\"> <\/span>Tu prends \u00e0 c\u0153ur tes responsabilit\u00e9s et ta capacit\u00e9 \u00e0 tout planifier est une force<br \/>\u2022<span style=\"white-space:pre\"> <\/span>Tu as la capacit\u00e9 de comprendre et de ressentir ce que les patients \u00e9prouvent en faisant preuve d\u2019une grande \u00e9coute<br \/>\u2022<span style=\"white-space:pre\"> <\/span>Tes exp\u00e9riences de stage vari\u00e9es t\u2019ont permis de d\u00e9velopper ton professionnalisme et ta capacit\u00e9 \u00e0 faire face aux changements<\/p>\n<p><strong>Au CHUM, voil\u00e0 ce qu\u2019on offre<\/strong><br \/>\u2022<span style=\"white-space:pre\"> <\/span>Postes permanents \u00e0 temps complet et temps partiel \u00e0 7, 8 ou 9 jours par quinzaine, \u00e0 l\u2019\u00e9quipe volante<br \/>\u2022<span style=\"white-space:pre\"> <\/span>Stabilisation long terme dans une de nos nombreuses sp\u00e9cialit\u00e9s<br \/>\u2022<span style=\"white-space:pre\"> <\/span>Affectation selon tes int\u00e9r\u00eats cliniques<br \/>\u2022<span style=\"white-space:pre\"> <\/span>Quart de rotation<br \/>\u2022<span style=\"white-space:pre\"> <\/span>1 fin de semaine sur 2<strong><\/strong><\/p>\n<p><\/span><\/div>\n<h2>Exigences<\/h2>\n<div class=\"default-text\"><span><\/p>\n<p>\u2022<span style=\"white-space:pre\"> <\/span>D\u00e9tenir un dipl\u00f4me d\u2019\u00e9tudes coll\u00e9giales en soins infirmiers ou un baccalaur\u00e9at en sciences infirmi\u00e8res ou en voie d\u2019obtention.<br \/>\u2022<span style=\"white-space:pre\"> <\/span>Avoir une attestation d\u2019exercice \u00e0 titre de candidat(e) \u00e0 l\u2019exercice de la profession d\u2019infirmier(\u00e8re) \u00e9mise par l\u2019OIIQ.<\/p>\n<p><strong>Comp\u00e9tences recherch\u00e9es<\/strong><br \/>\u2022<span style=\"white-space:pre\"> <\/span>Autonomie<br \/>\u2022<span style=\"white-space:pre\"> <\/span>Capacit\u00e9 \u00e0 travailler dans un contexte de changement<br \/>\u2022<span style=\"white-space:pre\"> <\/span>Capacit\u00e9 d\u2019adaptation<br \/>\u2022<span style=\"white-space:pre\"> <\/span>Empathie<br \/>\u2022<span style=\"white-space:pre\"> <\/span>Cr\u00e9ativit\u00e9<br \/>\u2022<span style=\"white-space:pre\"> <\/span>Professionnalisme<br \/>\u2022<span style=\"white-space:pre\"> <\/span>Comp\u00e9tences relationnelles, travail d\u2019\u00e9quipe et collaboration intra et interprofessionnelle<br \/>\u2022<span style=\"white-space:pre\"> <\/span>Approche patient\/Famille<br \/>\u2022<span style=\"white-space:pre\"> <\/span>Organisation du travail<br \/>\u2022<span style=\"white-space:pre\"> <\/span>Gestion de soi<\/p>\n<p><strong>Pourquoi choisir le CHUM<\/strong><br \/>\u2022 Pour un environnement de travail stimulant o\u00f9 le travail d\u2019\u00e9quipe et la convivialit\u00e9 occupent une place importante;<br \/>\u2022 Pour son programme d\u2019accueil, d\u2019orientation et d\u2019int\u00e9gration bas\u00e9 sur une approche par comp\u00e9tences en lien avec la sp\u00e9cialit\u00e9 choisie (minimum 15 jours d\u2019orientation)<br \/>\u2022 Pour ses apprentissages innovants : formations en ligne, simulations avec mannequin haute-fid\u00e9lit\u00e9, simulateurs virtuels<br \/>\u2022 Pour son am\u00e9nagement d\u2019horaire favorisant la poursuite de tes \u00e9tudes<br \/>\u2022 Pour son comit\u00e9 rel\u00e8ve jeunesse qui t\u2019accompagneras \u00e0 r\u00e9ussir ton examen de l\u2019OIIQ<br \/>\u2022 Pour son programme de rabais-employ\u00e9 (restaurant, sant\u00e9 et bien-\u00eatre, etc.)<br \/>\u2022 4 semaines de vacances pay\u00e9es apr\u00e8s 1 ann\u00e9e de travail \u00e0 temps complet\u00a0<br \/>\u2022 13 cong\u00e9s f\u00e9ri\u00e9s\u00a0<br \/>\u2022 9.6 jours de maladie pay\u00e9s, monnayables en d\u00e9cembre de chaque ann\u00e9e\u00a0<br \/>\u2022 Fonds de pension \u00e0 prestations d\u00e9termin\u00e9es\u00a0<br \/>\u2022 R\u00e9gime d\u2019assurances collectives\u00a0<br \/>\u2022 Station de m\u00e9tro Champ-de-Mars reli\u00e9e au CHUM par un tunnel<\/p>\n<p>Nous remercions toutes les personnes qui poseront leur candidature, mais ne communiquerons qu\u2019avec celles retenues pour un test ou une entrevue.\u00a0\u00a0<\/p>\n<p><strong>Dipl\u00f4me obtenu hors Qu\u00e9bec <\/strong>: <strong>Nous exigeons l<\/strong>\u2019<strong>\u00e9valuation comparative des \u00e9tudes \u00e9mise par le minist\u00e8re de l\u2019Immigration de la Francisation et de l\u2019Int\u00e9gration<\/strong> : https:\/\/www.quebec.ca\/immigration\/travailler-quebec\/faire-reconnaitre-competences-acquises-etranger\/obtenir-evaluation-comparative<\/p>\n<p>Il est \u00ab essentiel \u00bb de joindre votre CV au pr\u00e9sent formulaire pour que votre candidature soit consid\u00e9r\u00e9e\u00a0<\/p>\n<p>\u00a0<\/p>\n<p>\u00a0<\/p>\n<p><\/span><\/div>\n","employmentType":["FULL_TIME"],"hiringOrganization":{"@type":"Organization","name":""},"identifier":{"@type":"PropertyValue","name":"","value":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/candidat-e-a-l-exercice-de-la-profession-infirmiere-3\/"},"jobLocation":{"@type":"Place","address":"CHUM"},"directApply":true,"mainEntityOfPage":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/candidat-e-a-l-exercice-de-la-profession-infirmiere-3\/"}}</script> <script> | |
| 4030 | + const lazyloadRunObserver = () => { | |
| 4031 | + const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); | |
| 4032 | + const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { | |
| 4033 | + entries.forEach( ( entry ) => { | |
| 4034 | + if ( entry.isIntersecting ) { | |
| 4035 | + let lazyloadBackground = entry.target; | |
| 4036 | + if( lazyloadBackground ) { | |
| 4037 | + lazyloadBackground.classList.add( 'e-lazyloaded' ); | |
| 4038 | + } | |
| 4039 | + lazyloadBackgroundObserver.unobserve( entry.target ); | |
| 4040 | + } | |
| 4041 | + }); | |
| 4042 | + }, { rootMargin: '200px 0px 200px 0px' } ); | |
| 4043 | + lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { | |
| 4044 | + lazyloadBackgroundObserver.observe( lazyloadBackground ); | |
| 4045 | + } ); | |
| 4046 | + }; | |
| 4047 | + const events = [ | |
| 4048 | + 'DOMContentLoaded', | |
| 4049 | + 'elementor/lazyload/observe', | |
| 4050 | + ]; | |
| 4051 | + events.forEach( ( event ) => { | |
| 4052 | + document.addEventListener( event, lazyloadRunObserver ); | |
| 4053 | + } ); | |
| 4054 | + </script> | |
| 4055 | + <style id="global-styles-inline-css"> | |
| 4056 | +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-family--montserrat: Montserrat;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;} | |
| 4057 | +/*# sourceURL=global-styles-inline-css */ | |
| 4058 | +</style> | |
| 4059 | +<script id="wp-hooks-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script> | |
| 4060 | +<script id="wp-i18n-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script> | |
| 4061 | +<script id="wp-i18n-js-after"> | |
| 4062 | +wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); | |
| 4063 | +//# sourceURL=wp-i18n-js-after | |
| 4064 | +</script> | |
| 4065 | +<script id="swv-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.1.6"></script> | |
| 4066 | +<script id="contact-form-7-js-translations"> | |
| 4067 | +( function( domain, translations ) { | |
| 4068 | + var localeData = translations.locale_data[ domain ] || translations.locale_data.messages; | |
| 4069 | + localeData[""].domain = domain; | |
| 4070 | + wp.i18n.setLocaleData( localeData, domain ); | |
| 4071 | +} )( "contact-form-7", {"translation-revision-date":"2026-07-27 15:37:27+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"This contact form is placed in the wrong place.":["Ce formulaire de contact est plac\u00e9 dans un mauvais endroit."],"Error:":["Erreur\u00a0:"]}},"comment":{"reference":"includes\/js\/index.js"}} ); | |
| 4072 | +//# sourceURL=contact-form-7-js-translations | |
| 4073 | +</script> | |
| 4074 | +<script id="contact-form-7-js-before"> | |
| 4075 | +var wpcf7 = { | |
| 4076 | + "api": { | |
| 4077 | + "root": "https:\/\/chum.carrieresante.gouv.qc.ca\/wp-json\/", | |
| 4078 | + "namespace": "contact-form-7\/v1" | |
| 4079 | + }, | |
| 4080 | + "cached": 1 | |
| 4081 | +}; | |
| 4082 | +//# sourceURL=contact-form-7-js-before | |
| 4083 | +</script> | |
| 4084 | +<script id="contact-form-7-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.6"></script> | |
| 4085 | +<script id="wpmssab-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/wpmss/wpmssab.min.js?ver=1708979088"></script> | |
| 4086 | +<script id="SmoothScroll-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/mousewheel-smooth-scroll/js/SmoothScroll.min.js?ver=1.5.1"></script> | |
| 4087 | +<script id="wpmss-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/wpmss/wpmss.min.js?ver=1708979088"></script> | |
| 4088 | +<script id="wpcf7cf-scripts-js-extra"> | |
| 4089 | +var wpcf7cf_global_settings = {"ajaxurl":"https://chum.carrieresante.gouv.qc.ca/wp-admin/admin-ajax.php"}; | |
| 4090 | +//# sourceURL=wpcf7cf-scripts-js-extra | |
| 4091 | +</script> | |
| 4092 | +<script id="wpcf7cf-scripts-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/cf7-conditional-fields/js/scripts.js?ver=2.7.8"></script> | |
| 4093 | +<script id="google-recaptcha-js" src="https://www.google.com/recaptcha/api.js?render=6LeEyacoAAAAAFzI4jY6030tift5n1S0tecQWMkd&ver=3.0"></script> | |
| 4094 | +<script id="wp-polyfill-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0"></script> | |
| 4095 | +<script id="wpcf7-recaptcha-js-before"> | |
| 4096 | +var wpcf7_recaptcha = { | |
| 4097 | + "sitekey": "6LeEyacoAAAAAFzI4jY6030tift5n1S0tecQWMkd", | |
| 4098 | + "actions": { | |
| 4099 | + "homepage": "homepage", | |
| 4100 | + "contactform": "contactform" | |
| 4101 | + } | |
| 4102 | +}; | |
| 4103 | +//# sourceURL=wpcf7-recaptcha-js-before | |
| 4104 | +</script> | |
| 4105 | +<script id="wpcf7-recaptcha-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/contact-form-7/modules/recaptcha/index.js?ver=6.1.6"></script> | |
| 4106 | +<script id="ebor-parallax-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/parallax.js?ver=10.5.21"></script> | |
| 4107 | +<script id="ebor-isotope-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/isotope.js?ver=10.5.21"></script> | |
| 4108 | +<script id="final-countdown-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/final-countdown.js?ver=10.5.21"></script> | |
| 4109 | +<script id="flickity-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/flickity.js?ver=10.5.21"></script> | |
| 4110 | +<script id="granim-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/granim.js?ver=10.5.21"></script> | |
| 4111 | +<script id="smooth-scroll-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/smooth-scroll.js?ver=10.5.21"></script> | |
| 4112 | +<script id="spectragram-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/spectragram.js?ver=10.5.21"></script> | |
| 4113 | +<script id="twitter-post-fetcher-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/twitter-post-fetcher.js?ver=10.5.21"></script> | |
| 4114 | +<script id="ytplayer-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/ytplayer.js?ver=10.5.21"></script> | |
| 4115 | +<script id="easy-pie-chart-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/easy-pie-chart.js?ver=10.5.21"></script> | |
| 4116 | +<script id="steps-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/steps.js?ver=10.5.21"></script> | |
| 4117 | +<script id="lightbox-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/lightbox.js?ver=10.5.21"></script> | |
| 4118 | +<script id="ebor-scripts-wp-js-extra"> | |
| 4119 | +var stack_data = {"access_token":"replaceWithYourOwn","client_id":"replaceWithYourOwn","typed_speed":"100","map_marker":"https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/img/mapmarker.png","map_marker_title":"Stack","lightbox_text":"Image %1 of %2"}; | |
| 4120 | +//# sourceURL=ebor-scripts-wp-js-extra | |
| 4121 | +</script> | |
| 4122 | +<script id="ebor-scripts-wp-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/scripts_wp.js?ver=10.5.21"></script> | |
| 4123 | +<script id="ebor-scripts-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/scripts.js?ver=10.5.21"></script> | |
| 4124 | +<script id="wp-job-manager-job-application-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager/assets/dist/js/job-application.js?ver=a2e73d680f0b4392373b"></script> | |
| 4125 | +<script id="wp-emoji-settings" type="application/json"> | |
| 4126 | +{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://chum.carrieresante.gouv.qc.ca/wp-includes/js/wp-emoji-release.min.js?ver=7.0.4"}} | |
| 4127 | +</script> | |
| 4128 | +<script type="module"> | |
| 4129 | +/*! This file is auto-generated */ | |
| 4130 | +var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))}); | |
| 4131 | +//# sourceURL=https://chum.carrieresante.gouv.qc.ca/wp-includes/js/wp-emoji-loader.min.js | |
| 4132 | +</script> | |
| 4133 | +<script></script></body> | |
| 4134 | +</html> | |
| 4135 | +<!-- Cached by WP-Optimize (gzip) - https://teamupdraft.com/wp-optimize/ - Last modified: 18 August 2026 18h52 (America/Toronto UTC:-5) --> | |
added
tests/fixtures/chum/1f471636b44482e7722b.html
+4137 −0
@@ -0,0 +1,4137 @@ | ||
| 1 | +<!doctype html> | |
| 2 | +<html lang="fr-FR"> | |
| 3 | + | |
| 4 | +<head> | |
| 5 | + <meta charset="UTF-8"> | |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| 7 | + <meta http-equiv="X-UA-Compatible" content="IE=edge, IE=11, IE=10"> | |
| 8 | + <link rel="pingback" href="https://chum.carrieresante.gouv.qc.ca/xmlrpc.php" /> | |
| 9 | + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> | |
| 10 | +<link rel="alternate" hreflang="fr" href="https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-electrophysiologie-medicale-secteur-de-la-neurologie/" /> | |
| 11 | +<link rel="alternate" hreflang="x-default" href="https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-electrophysiologie-medicale-secteur-de-la-neurologie/" /> | |
| 12 | +<script id="cookieyes" type="text/javascript" src="https://cdn-cookieyes.com/client_data/a02c54dd1258cab5a44db8ca534bda4c/script.js"></script> | |
| 13 | + <!-- This site is optimized with the Yoast SEO plugin v27.9 - https://yoast.com/product/yoast-seo-wordpress/ --> | |
| 14 | + <title>Technologue en électrophysiologie médicale - Secteur de la neurologie - CHUM</title> | |
| 15 | + <link rel="canonical" href="https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-electrophysiologie-medicale-secteur-de-la-neurologie/" /> | |
| 16 | + <meta property="og:locale" content="fr_FR" /> | |
| 17 | + <meta property="og:type" content="article" /> | |
| 18 | + <meta property="og:title" content="Technologue en électrophysiologie médicale - Secteur de la neurologie - CHUM" /> | |
| 19 | + <meta property="og:description" content="Mandat Le CHUM est un hôpital universitaire à la fois innovant et humain, au service des patient(es) et du réseau. Il offre..." /> | |
| 20 | + <meta property="og:url" content="https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-electrophysiologie-medicale-secteur-de-la-neurologie/" /> | |
| 21 | + <meta property="og:site_name" content="CHUM" /> | |
| 22 | + <meta property="article:modified_time" content="2026-06-23T13:40:25+00:00" /> | |
| 23 | + <meta name="twitter:card" content="summary_large_image" /> | |
| 24 | + <meta name="twitter:label1" content="Durée de lecture estimée" /> | |
| 25 | + <meta name="twitter:data1" content="3 minutes" /> | |
| 26 | + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/technologue-en-electrophysiologie-medicale-secteur-de-la-neurologie\/","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/technologue-en-electrophysiologie-medicale-secteur-de-la-neurologie\/","name":"Technologue en électrophysiologie médicale - Secteur de la neurologie - CHUM","isPartOf":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#website"},"datePublished":"2026-06-16T04:00:00+00:00","dateModified":"2026-06-23T13:40:25+00:00","breadcrumb":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/technologue-en-electrophysiologie-medicale-secteur-de-la-neurologie\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/technologue-en-electrophysiologie-medicale-secteur-de-la-neurologie\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/technologue-en-electrophysiologie-medicale-secteur-de-la-neurologie\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/chum.carrieresante.gouv.qc.ca\/"},{"@type":"ListItem","position":2,"name":"Technologue en électrophysiologie médicale – Secteur de la neurologie"}]},{"@type":"WebSite","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#website","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/","name":"Makila.ai","description":"Carrière en santé","publisher":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/chum.carrieresante.gouv.qc.ca\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#organization","name":"Services Makila inc.","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#\/schema\/logo\/image\/","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/wp-content\/uploads\/2020\/10\/Logo-Makila-Dark-150.png","contentUrl":"https:\/\/chum.carrieresante.gouv.qc.ca\/wp-content\/uploads\/2020\/10\/Logo-Makila-Dark-150.png","width":150,"height":43,"caption":"Services Makila inc."},"image":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/makila-ai\/"]}]}</script> | |
| 27 | + <!-- / Yoast SEO plugin. --> | |
| 28 | + | |
| 29 | + | |
| 30 | +<link rel='dns-prefetch' href='//static.addtoany.com' /> | |
| 31 | +<link rel='dns-prefetch' href='//code.jquery.com' /> | |
| 32 | +<link rel='dns-prefetch' href='//use.fontawesome.com' /> | |
| 33 | +<link rel='dns-prefetch' href='//fonts.googleapis.com' /> | |
| 34 | +<link href='https://fonts.gstatic.com' crossorigin rel='preconnect' /> | |
| 35 | +<link rel="alternate" type="application/rss+xml" title="CHUM » Flux" href="https://chum.carrieresante.gouv.qc.ca/feed/" /> | |
| 36 | +<link rel="alternate" type="application/rss+xml" title="CHUM » Flux des commentaires" href="https://chum.carrieresante.gouv.qc.ca/comments/feed/" /> | |
| 37 | +<link rel="alternate" type="application/rss+xml" title="CHUM » Technologue en électrophysiologie médicale – Secteur de la neurologie Flux des commentaires" href="https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-electrophysiologie-medicale-secteur-de-la-neurologie/feed/" /> | |
| 38 | +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://chum.carrieresante.gouv.qc.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-electrophysiologie-medicale-secteur-de-la-neurologie%2F" /> | |
| 39 | +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://chum.carrieresante.gouv.qc.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-electrophysiologie-medicale-secteur-de-la-neurologie%2F&format=xml" /> | |
| 40 | +<style id="wp-img-auto-sizes-contain-inline-css"> | |
| 41 | +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} | |
| 42 | +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */ | |
| 43 | +</style> | |
| 44 | +<link rel='stylesheet' id='reusablec-block-css-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/reusable-content-blocks/includes/css/reusablec-block.css?ver=7.0.4' media='all' /> | |
| 45 | +<style id="wp-emoji-styles-inline-css"> | |
| 46 | + | |
| 47 | + img.wp-smiley, img.emoji { | |
| 48 | + display: inline !important; | |
| 49 | + border: none !important; | |
| 50 | + box-shadow: none !important; | |
| 51 | + height: 1em !important; | |
| 52 | + width: 1em !important; | |
| 53 | + margin: 0 0.07em !important; | |
| 54 | + vertical-align: -0.1em !important; | |
| 55 | + background: none !important; | |
| 56 | + padding: 0 !important; | |
| 57 | + } | |
| 58 | +/*# sourceURL=wp-emoji-styles-inline-css */ | |
| 59 | +</style> | |
| 60 | +<style id="wp-block-library-inline-css"> | |
| 61 | +:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} | |
| 62 | +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */ | |
| 63 | +</style> | |
| 64 | +<style id="classic-theme-styles-inline-css"> | |
| 65 | +/*! This file is auto-generated */ | |
| 66 | +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} | |
| 67 | +/*# sourceURL=/wp-includes/css/classic-themes.min.css */ | |
| 68 | +</style> | |
| 69 | +<style id="wp-block-styles-placeholder-inline-css"> | |
| 70 | +:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the block styles printed at wp_footer." } | |
| 71 | +/*# sourceURL=wp-block-styles-placeholder-inline-css */ | |
| 72 | +</style> | |
| 73 | +<style id="font-awesome-svg-styles-default-inline-css"> | |
| 74 | +.svg-inline--fa { | |
| 75 | + display: inline-block; | |
| 76 | + height: 1em; | |
| 77 | + overflow: visible; | |
| 78 | + vertical-align: -.125em; | |
| 79 | +} | |
| 80 | +/*# sourceURL=font-awesome-svg-styles-default-inline-css */ | |
| 81 | +</style> | |
| 82 | +<link rel='stylesheet' id='font-awesome-svg-styles-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/font-awesome/v6.4.2/css/svg-with-js.css' media='all' /> | |
| 83 | +<style id="font-awesome-svg-styles-inline-css"> | |
| 84 | + .wp-block-font-awesome-icon svg::before, | |
| 85 | + .wp-rich-text-font-awesome-icon svg::before {content: unset;} | |
| 86 | +/*# sourceURL=font-awesome-svg-styles-inline-css */ | |
| 87 | +</style> | |
| 88 | +<style id="wp-global-styles-placeholder-inline-css"> | |
| 89 | +:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the global-styles printed at wp_footer." } | |
| 90 | +/*# sourceURL=wp-global-styles-placeholder-inline-css */ | |
| 91 | +</style> | |
| 92 | +<link rel='stylesheet' id='contact-form-7-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.6' media='all' /> | |
| 93 | +<link rel='stylesheet' id='select2-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager/assets/lib/select2/select2.min.css?ver=4.0.10' media='all' /> | |
| 94 | +<link rel='stylesheet' id='wp-job-manager-frontend-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager/assets/dist/css/frontend.css?ver=dfd3b8d2ce68f47df57d' media='all' /> | |
| 95 | +<link rel='stylesheet' id='wpml-legacy-horizontal-list-0-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/sitepress-multilingual-cms/templates/language-switchers/legacy-list-horizontal/style.min.css?ver=1' media='all' /> | |
| 96 | +<link rel='stylesheet' id='wpml-menu-item-0-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/sitepress-multilingual-cms/templates/language-switchers/menu-item/style.min.css?ver=1' media='all' /> | |
| 97 | +<link rel='stylesheet' id='job-alerts-frontend-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager-alerts/assets/dist/css/frontend.css?ver=3.2.0' media='all' /> | |
| 98 | +<link rel='stylesheet' id='job-alerts-frontend-default-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager-alerts/assets/dist/css/frontend.default.css?ver=3.2.0' media='all' /> | |
| 99 | +<link rel='stylesheet' id='jquery-ui-css' href='//code.jquery.com/ui/1.13.3/themes/smoothness/jquery-ui.min.css?ver=1.13.3' media='all' /> | |
| 100 | +<link rel='stylesheet' id='jm-application-deadline-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager-application-deadline/assets/dist/css/frontend.css?ver=1.3.0' media='' /> | |
| 101 | +<link rel='stylesheet' id='stack-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style.css?ver=7.0.4' media='all' /> | |
| 102 | +<link rel='stylesheet' id='stack-child-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack-child/style.css?ver=10.5.21' media='all' /> | |
| 103 | +<link rel='stylesheet' id='font-awesome-official-css' href='https://use.fontawesome.com/releases/v6.4.2/css/all.css' media='all' integrity="sha384-blOohCVdhjmtROpu8+CfTnUWham9nkX7P7OZQMst+RUnhtoY/9qemFAkIKOYxDI3" crossorigin="anonymous" /> | |
| 104 | +<link rel='stylesheet' id='addtoany-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/add-to-any/addtoany.min.css?ver=1.16' media='all' /> | |
| 105 | +<link rel='stylesheet' id='cf7cf-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/cf7-conditional-fields/style.css?ver=2.7.8' media='all' /> | |
| 106 | +<link rel='stylesheet' id='ebor-google-font-css' href='//fonts.googleapis.com/css?family=Lato%3A200%2C300%2C400%2C400i%2C500%2C600%2C700%7CMerriweather%3A300%2C300i%7CMaterial+Icons&ver=10.5.21' media='all' /> | |
| 107 | +<link rel='stylesheet' id='bootstrap-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/bootstrap.css?ver=10.5.21' media='all' /> | |
| 108 | +<link rel='stylesheet' id='ebor-icons-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/icons.css?ver=10.5.21' media='all' /> | |
| 109 | +<link rel='stylesheet' id='ebor-plugins-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/plugins.css?ver=10.5.21' media='all' /> | |
| 110 | +<link rel='stylesheet' id='ebor-theme-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/theme.css?ver=10.5.21' media='all' /> | |
| 111 | +<link rel='stylesheet' id='ebor-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack-child/style.css?ver=10.5.21' media='all' /> | |
| 112 | +<style id="ebor-style-inline-css"> | |
| 113 | + | |
| 114 | + .btn--primary .btn__text, .btn--primary:visited .btn__text { | |
| 115 | + color: #000000; | |
| 116 | + } | |
| 117 | + input[type].btn--primary, | |
| 118 | + .pos-fixed.bar--transparent.bg--primary, | |
| 119 | + .ebor-cart-count, .woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover { | |
| 120 | + background: #16375e; | |
| 121 | + } | |
| 122 | + .pos-fixed.bar--transparent.bg--secondary { | |
| 123 | + background: #FAFAFA; | |
| 124 | + } | |
| 125 | + .pos-fixed.bar--transparent.bg--dark { | |
| 126 | + background: #252525; | |
| 127 | + } | |
| 128 | + .pos-fixed.bar--transparent.bg--primary-1 { | |
| 129 | + background: #34acaa; | |
| 130 | + } | |
| 131 | + .bg--white h1, .bg--white h2, .bg--white h3, .bg--white h4, .bg--white h5, .bg--white h6, .bg--white i, .mobile-header .cart-link { | |
| 132 | + color: #252525; | |
| 133 | + } | |
| 134 | + @media all and (max-width:767px) { | |
| 135 | + .bar.bg--dark.bar--mobile-sticky[data-scroll-class*="fixed"].pos-fixed, | |
| 136 | + .bar.bg--dark.bar--mobile-sticky[data-scroll-class*="fixed"]+.bar.pos-fixed { | |
| 137 | + background: #252525; | |
| 138 | + } | |
| 139 | + .bar.bg--secondary.bar--mobile-sticky[data-scroll-class*="fixed"].pos-fixed, | |
| 140 | + .bar.bg--secondary.bar--mobile-sticky[data-scroll-class*="fixed"]+.bar.pos-fixed { | |
| 141 | + background: #FAFAFA; | |
| 142 | + } | |
| 143 | + } | |
| 144 | + .thumbnails-slider .thumbnail-trigger.active img { | |
| 145 | + border: 1px solid #16375e; | |
| 146 | + } | |
| 147 | + .menu-horizontal > li > a, .menu-horizontal > li > span, .menu-horizontal > li > .modal-instance > .modal-trigger { | |
| 148 | + font-size: 1em; | |
| 149 | + } | |
| 150 | + .woocommerce #respond input#submit.alt, | |
| 151 | + .woocommerce a.button.alt, | |
| 152 | + .woocommerce button.button.alt, | |
| 153 | + .woocommerce input.button.alt, | |
| 154 | + .woocommerce #respond input#submit, | |
| 155 | + .woocommerce a.button, | |
| 156 | + .woocommerce button.button, | |
| 157 | + .woocommerce input.button { | |
| 158 | + background: #16375e; | |
| 159 | + color: #fff; | |
| 160 | + transition: 0.1s linear; | |
| 161 | + } | |
| 162 | + .woocommerce #respond input#submit.alt:hover, | |
| 163 | + .woocommerce a.button.alt:hover, | |
| 164 | + .woocommerce button.button.alt:hover, | |
| 165 | + .woocommerce input.button.alt:hover, | |
| 166 | + .woocommerce #respond input#submit:hover, | |
| 167 | + .woocommerce a.button:hover, | |
| 168 | + .woocommerce button.button:hover, | |
| 169 | + .woocommerce input.button:hover { | |
| 170 | + color: #fff; | |
| 171 | + opacity: 0.9; | |
| 172 | + background: #16375e; | |
| 173 | + transform: translate3d(0, -2px, 0); | |
| 174 | + -webkit-transform: translate3d(0, -2px, 0); | |
| 175 | + } | |
| 176 | + | |
| 177 | + .menu-horizontal > li:not(:hover) > a, .menu-horizontal > li:not(:hover) > span, | |
| 178 | + .menu-horizontal > li:not(:hover) > .modal-instance > .modal-trigger { | |
| 179 | + opacity: 0.85 | |
| 180 | + } | |
| 181 | + .menu-vertical li:not(:hover):not(.dropdown--active) { | |
| 182 | + opacity: .75; | |
| 183 | + } | |
| 184 | + | |
| 185 | +/*# sourceURL=ebor-style-inline-css */ | |
| 186 | +</style> | |
| 187 | +<link rel='stylesheet' id='ebor-iconsmind-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/iconsmind.css?ver=10.5.21' media='all' /> | |
| 188 | +<link rel='stylesheet' id='font-awesome-official-v4shim-css' href='https://use.fontawesome.com/releases/v6.4.2/css/v4-shims.css' media='all' integrity="sha384-IqMDcR2qh8kGcGdRrxwop5R2GiUY5h8aDR/LhYxPYiXh3sAAGGDkFvFqWgFvTsTd" crossorigin="anonymous" /> | |
| 189 | +<script id="addtoany-core-js-before"> | |
| 190 | +window.a2a_config=window.a2a_config||{};a2a_config.callbacks=[];a2a_config.overlays=[];a2a_config.templates={};a2a_localize = { | |
| 191 | + Share: "Partager", | |
| 192 | + Save: "Enregistrer", | |
| 193 | + Subscribe: "S'abonner", | |
| 194 | + Email: "E-mail", | |
| 195 | + Bookmark: "Marque-page", | |
| 196 | + ShowAll: "Montrer tout", | |
| 197 | + ShowLess: "Montrer moins", | |
| 198 | + FindServices: "Trouver des service(s)", | |
| 199 | + FindAnyServiceToAddTo: "Trouver instantanément des services à ajouter à", | |
| 200 | + PoweredBy: "Propulsé par", | |
| 201 | + ShareViaEmail: "Partager par e-mail", | |
| 202 | + SubscribeViaEmail: "S’abonner par e-mail", | |
| 203 | + BookmarkInYourBrowser: "Ajouter un signet dans votre navigateur", | |
| 204 | + BookmarkInstructions: "Appuyez sur Ctrl+D ou \u2318+D pour mettre cette page en signet", | |
| 205 | + AddToYourFavorites: "Ajouter à vos favoris", | |
| 206 | + SendFromWebOrProgram: "Envoyer depuis n’importe quelle adresse e-mail ou logiciel e-mail", | |
| 207 | + EmailProgram: "Programme d’e-mail", | |
| 208 | + More: "Plus…", | |
| 209 | + ThanksForSharing: "Merci de partager !", | |
| 210 | + ThanksForFollowing: "Merci de nous suivre !" | |
| 211 | +}; | |
| 212 | + | |
| 213 | + | |
| 214 | +//# sourceURL=addtoany-core-js-before | |
| 215 | +</script> | |
| 216 | +<script id="addtoany-core-js" defer src="https://static.addtoany.com/menu/page.js"></script> | |
| 217 | +<script id="jquery-core-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script> | |
| 218 | +<script id="jquery-migrate-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script> | |
| 219 | +<script id="addtoany-jquery-js" defer src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/add-to-any/addtoany.min.js?ver=1.1"></script> | |
| 220 | +<script id="wpml-browser-redirect-js-extra"> | |
| 221 | +var wpml_browser_redirect_params = {"pageLanguage":"fr","languageUrls":{"fr_fr":"https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-electrophysiologie-medicale-secteur-de-la-neurologie/","fr":"https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-electrophysiologie-medicale-secteur-de-la-neurologie/"},"cookie":{"name":"_icl_visitor_lang_js","domain":"chum.carrieresante.gouv.qc.ca","path":"/","expiration":24}}; | |
| 222 | +//# sourceURL=wpml-browser-redirect-js-extra | |
| 223 | +</script> | |
| 224 | +<script id="wpml-browser-redirect-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/sitepress-multilingual-cms/dist/js/browser-redirect/app.js?ver=495000"></script> | |
| 225 | +<script></script><link rel="https://api.w.org/" href="https://chum.carrieresante.gouv.qc.ca/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://chum.carrieresante.gouv.qc.ca/wp-json/wp/v2/job-listings/53758" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://chum.carrieresante.gouv.qc.ca/xmlrpc.php?rsd" /> | |
| 226 | +<meta name="generator" content="WordPress 7.0.4" /> | |
| 227 | +<link rel='shortlink' href='https://chum.carrieresante.gouv.qc.ca/?p=53758' /> | |
| 228 | +<meta name="generator" content="WPML ver:4.9.5 stt:1,4;" /> | |
| 229 | +<meta name="generator" content="Elementor 4.1.4; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"> | |
| 230 | + <style> | |
| 231 | + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 232 | + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 233 | + background-image: none !important; | |
| 234 | + } | |
| 235 | + @media screen and (max-height: 1024px) { | |
| 236 | + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 237 | + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 238 | + background-image: none !important; | |
| 239 | + } | |
| 240 | + } | |
| 241 | + @media screen and (max-height: 640px) { | |
| 242 | + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 243 | + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 244 | + background-image: none !important; | |
| 245 | + } | |
| 246 | + } | |
| 247 | + </style> | |
| 248 | + <meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/> | |
| 249 | +<script type="text/javascript" id="sns_global_scripts_in_head">// JavaScript to handle the "Select All" for Statut De L'Emploi | |
| 250 | +jQuery(document).ready(function($) { | |
| 251 | + $('#select-all-StatutDeLEmploi').click(function(e) { | |
| 252 | + e.preventDefault(); | |
| 253 | + var checkboxGroup = $(this).closest('form').find('[name="StatutDeLEmploi[]"]'); | |
| 254 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 255 | + checkboxGroup.prop('checked', isChecked); | |
| 256 | + if (isChecked) { | |
| 257 | + $(this).text('Déselectionner tout'); | |
| 258 | + } else { | |
| 259 | + $(this).text('Sélectionner tout'); | |
| 260 | + } | |
| 261 | + }); | |
| 262 | + | |
| 263 | + $('[name="StatutDeLEmploi[]"]').change(function() { | |
| 264 | + var allChecked = $('[name="StatutDeLEmploi[]"]:checked').length === $('[name="StatutDeLEmploi[]"]').length; | |
| 265 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 266 | + $('#select-all-StatutDeLEmploi').text(linkText); | |
| 267 | + }); | |
| 268 | +}); | |
| 269 | +// JavaScript to handle the "Select All" for Territoires | |
| 270 | +jQuery(document).ready(function($) { | |
| 271 | + $('#select-all-Territoires').click(function(e) { | |
| 272 | + e.preventDefault(); | |
| 273 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires[]"]'); | |
| 274 | + | |
| 275 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 276 | + checkboxGroup.prop('checked', isChecked); | |
| 277 | + | |
| 278 | + if (isChecked) { | |
| 279 | + $(this).text('Déselectionner tout'); | |
| 280 | + } else { | |
| 281 | + $(this).text('Sélectionner tout'); | |
| 282 | + } | |
| 283 | + }); | |
| 284 | + | |
| 285 | + | |
| 286 | + $('[name="Territoires[]"]').change(function() { | |
| 287 | + var allChecked = $('[name="Territoires[]"]:checked').length === $('[name="Territoires[]"]').length; | |
| 288 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 289 | + $('#select-all-Territoires').text(linkText); | |
| 290 | + }); | |
| 291 | +}); | |
| 292 | +// JavaScript to handle the "Select All" for Territoires2 | |
| 293 | +jQuery(document).ready(function($) { | |
| 294 | + $('#select-all-Territoires2').click(function(e) { | |
| 295 | + e.preventDefault(); // Prevent the default link behavior | |
| 296 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires2[]"]'); | |
| 297 | + | |
| 298 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 299 | + checkboxGroup.prop('checked', isChecked); | |
| 300 | + | |
| 301 | + if (isChecked) { | |
| 302 | + $(this).text('Déselectionner tout'); | |
| 303 | + } else { | |
| 304 | + $(this).text('Sélectionner tout'); | |
| 305 | + } | |
| 306 | + }); | |
| 307 | + | |
| 308 | + $('[name="Territoires2[]"]').change(function() { | |
| 309 | + var allChecked = $('[name="Territoires2[]"]:checked').length === $('[name="Territoires2[]"]').length; | |
| 310 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 311 | + $('#select-all-Territoires2').text(linkText); | |
| 312 | + }); | |
| 313 | +}); | |
| 314 | + | |
| 315 | +// JavaScript to handle the "Select All" for Territoires3 | |
| 316 | +jQuery(document).ready(function($) { | |
| 317 | + $('#select-all-Territoires3').click(function(e) { | |
| 318 | + e.preventDefault(); // Prevent the default link behavior | |
| 319 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires3[]"]'); | |
| 320 | + | |
| 321 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 322 | + checkboxGroup.prop('checked', isChecked); | |
| 323 | + | |
| 324 | + if (isChecked) { | |
| 325 | + $(this).text('Déselectionner tout'); | |
| 326 | + } else { | |
| 327 | + $(this).text('Sélectionner tout'); | |
| 328 | + } | |
| 329 | + }); | |
| 330 | + | |
| 331 | + $('[name="Territoires3[]"]').change(function() { | |
| 332 | + var allChecked = $('[name="Territoires3[]"]:checked').length === $('[name="Territoires3[]"]').length; | |
| 333 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 334 | + $('#select-all-Territoires3').text(linkText); | |
| 335 | + }); | |
| 336 | +}); | |
| 337 | + | |
| 338 | +// JavaScript to handle the "Select All" for Territoires4 | |
| 339 | +jQuery(document).ready(function($) { | |
| 340 | + $('#select-all-Territoires4').click(function(e) { | |
| 341 | + e.preventDefault(); // Prevent the default link behavior | |
| 342 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires4[]"]'); | |
| 343 | + | |
| 344 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 345 | + checkboxGroup.prop('checked', isChecked); | |
| 346 | + | |
| 347 | + if (isChecked) { | |
| 348 | + $(this).text('Déselectionner tout'); | |
| 349 | + } else { | |
| 350 | + $(this).text('Sélectionner tout'); | |
| 351 | + } | |
| 352 | + }); | |
| 353 | + | |
| 354 | + $('[name="Territoires4[]"]').change(function() { | |
| 355 | + var allChecked = $('[name="Territoires4[]"]:checked').length === $('[name="Territoires4[]"]').length; | |
| 356 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 357 | + $('#select-all-Territoires4').text(linkText); | |
| 358 | + }); | |
| 359 | +}); | |
| 360 | + | |
| 361 | +// JavaScript to set the checkboxes 'StatutDeLEmploi' and 'Categories' to be required. | |
| 362 | +document.addEventListener('wpcf7submit', function(event) { | |
| 363 | + if ('StatutDeLEmploi' in event.detail.inputs) { | |
| 364 | + if (event.detail.inputs['StatutDeLEmploi'].checked === false) { | |
| 365 | + alert('Pour vous abonner, vous devez sélectionner au moins un élément de la section \"statut de l\'emploi\"'); | |
| 366 | + event.preventDefault(); | |
| 367 | + } | |
| 368 | + } | |
| 369 | +}, false); | |
| 370 | +//Renommer Rechercher des offres d’emploi par Filtrer les résultats | |
| 371 | +jQuery(document).ready(function($) { | |
| 372 | + var submitButton = $('.search_submit input[type="submit"]'); | |
| 373 | + submitButton.attr('value', 'Filtrer les résultats'); | |
| 374 | +}); | |
| 375 | + | |
| 376 | +// Get all text nodes in the document | |
| 377 | +function getAllTextNodes(element) { | |
| 378 | + const textNodes = []; | |
| 379 | + if (element.nodeType === Node.TEXT_NODE) { | |
| 380 | + textNodes.push(element); | |
| 381 | + } else { | |
| 382 | + const children = element.childNodes; | |
| 383 | + for (let i = 0; i < children.length; i++) { | |
| 384 | + textNodes.push(...getAllTextNodes(children[i])); | |
| 385 | + } | |
| 386 | + } | |
| 387 | + return textNodes; | |
| 388 | +} | |
| 389 | + | |
| 390 | +//remove overlay from hero slider | |
| 391 | +document.addEventListener('DOMContentLoaded', function () { | |
| 392 | + var elements = document.querySelectorAll('.imagebg[data-overlay="4"]'); | |
| 393 | + elements.forEach(function (element) { | |
| 394 | + element.removeAttribute('data-overlay'); | |
| 395 | + }); | |
| 396 | +}); | |
| 397 | + | |
| 398 | +window.addEventListener('DOMContentLoaded', function () { | |
| 399 | +document.querySelector('.scroll-right').onclick = () => { | |
| 400 | + document.querySelector('.job-listing-wrapper').scrollBy({ | |
| 401 | + left: 300, | |
| 402 | + behavior: 'smooth' | |
| 403 | + }); | |
| 404 | +}; | |
| 405 | + | |
| 406 | +document.querySelector('.scroll-left').onclick = () => { | |
| 407 | + document.querySelector('.job-listing-wrapper').scrollBy({ | |
| 408 | + left: -300, | |
| 409 | + behavior: 'smooth' | |
| 410 | + }); | |
| 411 | +}; | |
| 412 | + | |
| 413 | +}); | |
| 414 | + | |
| 415 | +document.addEventListener('DOMContentLoaded', function() { | |
| 416 | + document.querySelectorAll('strong').forEach(function(el) { | |
| 417 | + if (el.textContent.trim() === 'Partagez :') { | |
| 418 | + el.classList.add('is-partagez'); | |
| 419 | + } | |
| 420 | + }); | |
| 421 | +}); | |
| 422 | +</script><link rel="icon" href="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-32x32.png" sizes="32x32" /> | |
| 423 | +<link rel="icon" href="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-192x192.png" sizes="192x192" /> | |
| 424 | +<link rel="apple-touch-icon" href="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-180x180.png" /> | |
| 425 | +<meta name="msapplication-TileImage" content="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-270x270.png" /> | |
| 426 | +<style id="wp-custom-css"> | |
| 427 | +body { | |
| 428 | + font-size: 1.15em; | |
| 429 | + font-weight: 400; | |
| 430 | + color: #000000; | |
| 431 | +} | |
| 432 | + | |
| 433 | +p, .p { | |
| 434 | + font-size: 1.1em; | |
| 435 | + line-height: 1.4em; | |
| 436 | + font-weight: 500; | |
| 437 | + margin-bottom: 1em; | |
| 438 | +} | |
| 439 | + | |
| 440 | +b, .b, strong, .strong { | |
| 441 | + font-weight: 700; | |
| 442 | +} | |
| 443 | + | |
| 444 | +a, a:hover { | |
| 445 | + color: #004071; | |
| 446 | + text-decoration-line: none; | |
| 447 | +} | |
| 448 | + | |
| 449 | +p a, span a, label a { | |
| 450 | + text-decoration-line: none; | |
| 451 | +} | |
| 452 | + | |
| 453 | +.wpb_wrapper a { | |
| 454 | + color: #87CEEB; | |
| 455 | + text-decoration-line: none; | |
| 456 | +} | |
| 457 | + | |
| 458 | +ul > li { | |
| 459 | + font-size: 1.1em; | |
| 460 | + line-height: 1.2em; | |
| 461 | + list-style: disc; | |
| 462 | + list-style-position: outside; | |
| 463 | + margin-left: 20px; | |
| 464 | + padding-left: 0px; | |
| 465 | + padding-bottom: 10px; | |
| 466 | +} | |
| 467 | + | |
| 468 | +.wpb_text_column ul li { | |
| 469 | + list-style-type: disc; | |
| 470 | + list-style-position: outside; | |
| 471 | + margin-left: 5px; | |
| 472 | +} | |
| 473 | + | |
| 474 | +.post-content ul:not(.tabs-content):not(.slides), .wpb_text_column ul, ul.accordion ul, ul.tabs-content ul { | |
| 475 | + list-style-type: disc; | |
| 476 | + list-style-position: outside; | |
| 477 | + margin-left: 25px; | |
| 478 | +} | |
| 479 | + | |
| 480 | +h1, .h1 { | |
| 481 | + font-size: 2.6em; | |
| 482 | + line-height: 1.6em; | |
| 483 | + color: #16375E; | |
| 484 | + font-weight: bold !important; | |
| 485 | +} | |
| 486 | + | |
| 487 | +h2, .h2 { | |
| 488 | + font-size: 40px; | |
| 489 | + line-height: 1.4em; | |
| 490 | + font-weight:bold; | |
| 491 | +} | |
| 492 | + | |
| 493 | +h3, .h3 { | |
| 494 | + font-size: 1.3em; | |
| 495 | + line-height: 1.4em; | |
| 496 | + font-weight: 400; | |
| 497 | + margin-bottom: 0.5em; | |
| 498 | +} | |
| 499 | + | |
| 500 | +h4, .h4 { | |
| 501 | + font-size: 1.2em; | |
| 502 | + line-height: 1em; | |
| 503 | + font-weight: 500; | |
| 504 | +} | |
| 505 | + | |
| 506 | +h5, .h5 { | |
| 507 | + font-size: 1em; | |
| 508 | + line-height: 1.3em; | |
| 509 | + font-weight: 400; | |
| 510 | +} | |
| 511 | + | |
| 512 | +.alignlefticon { | |
| 513 | + float: left; | |
| 514 | + margin: 0 10px 0 0!important; | |
| 515 | +} | |
| 516 | + | |
| 517 | +.vertitop .pos-vertical-center { | |
| 518 | + top: 195px; | |
| 519 | +} | |
| 520 | + | |
| 521 | +.vertitop-faq .pos-vertical-center { | |
| 522 | + top: 140px; | |
| 523 | +} | |
| 524 | + | |
| 525 | +/* HEADER MENU */ | |
| 526 | +/* Header horizontal menu underline */ | |
| 527 | +.menu-horizontal>li>a:hover { | |
| 528 | + border-bottom:none; | |
| 529 | +} | |
| 530 | + | |
| 531 | +.menu-horizontal li:not(:last-child) { | |
| 532 | + margin-right: 1em; | |
| 533 | +} | |
| 534 | + | |
| 535 | +@media (min-width: 990px){ | |
| 536 | + .menu-horizontal li:not(:last-child) { | |
| 537 | + margin-right: 50px; | |
| 538 | + } | |
| 539 | +} | |
| 540 | + | |
| 541 | +.header--top-bar .type--fade, .header--top-bar a { | |
| 542 | + opacity: 1; | |
| 543 | + color: red; | |
| 544 | +} | |
| 545 | + | |
| 546 | +.btn--demo .btn__text{ | |
| 547 | + border-color: #34acaa !important; | |
| 548 | + color:#fff !important; | |
| 549 | +} | |
| 550 | + | |
| 551 | +/* Header drop down menu style */ | |
| 552 | +.dropdowns--hover .dropdown:hover>.dropdown__container>.container>.row>.dropdown__content { | |
| 553 | + position:absolute; | |
| 554 | + left:400px; | |
| 555 | + border-top:3px solid #17355f; | |
| 556 | + width: auto !important; | |
| 557 | +} | |
| 558 | + | |
| 559 | +.dropdowns--hover .dropdown:hover>.dropdown__container>.container>.row>.dropdown__content a:hover{ | |
| 560 | + color: #17355f !important; | |
| 561 | +} | |
| 562 | + | |
| 563 | +.menu-vertical li { | |
| 564 | + font-size: 0.9em; | |
| 565 | + font-weight: 400; | |
| 566 | + color: #666; | |
| 567 | + list-style: none; | |
| 568 | +} | |
| 569 | + | |
| 570 | +/* WPFront bar close button */ | |
| 571 | +.wpfront-close { | |
| 572 | + border: 1px solid #000000 !important; | |
| 573 | + background-color: #ffd600 !important; | |
| 574 | + color: #000000 !important; | |
| 575 | +} | |
| 576 | + | |
| 577 | +#wpfront-notification-bar div.wpfront-close { | |
| 578 | + position: absolute; | |
| 579 | + top: 11px; | |
| 580 | + right: 10px; | |
| 581 | + font-size: 11px; | |
| 582 | + padding: 8px 4px; | |
| 583 | + -webkit-border-radius: 2px; | |
| 584 | + -moz-border-radius: 2px; | |
| 585 | + border-radius: 2px; | |
| 586 | +} | |
| 587 | + | |
| 588 | +/* HEADER HERO CENTER ELEMENTS */ | |
| 589 | +.row-fixed-width { | |
| 590 | + max-width:1170px; | |
| 591 | + margin: 0 auto; | |
| 592 | +} | |
| 593 | + | |
| 594 | +.header-titre { | |
| 595 | + color: #FFF; | |
| 596 | +} | |
| 597 | + | |
| 598 | +/* CONTENT BOX STYLING */ | |
| 599 | +.lien-boite { | |
| 600 | + background-color:#87CEEB; | |
| 601 | + margin-top: 2em; | |
| 602 | + color: #000000; | |
| 603 | + padding:10px; | |
| 604 | + | |
| 605 | +} | |
| 606 | + | |
| 607 | +.solbox { | |
| 608 | + font-size: 0.9em; | |
| 609 | + line-height: 1em; | |
| 610 | + font-weight: 400; | |
| 611 | + margin-bottom: 1em; | |
| 612 | + text-align: left; | |
| 613 | +} | |
| 614 | + | |
| 615 | +/* Logo caroussel */ | |
| 616 | +.vc_row .vc_column-gap-30 { | |
| 617 | + margin-left: -10px; | |
| 618 | + margin-right: -10px; | |
| 619 | +} | |
| 620 | + | |
| 621 | +/* Ligne titre */ | |
| 622 | +.floatClear { | |
| 623 | + clear: both; | |
| 624 | +} | |
| 625 | +#wrapper { | |
| 626 | + text-align: center; | |
| 627 | + position: relative; | |
| 628 | +} | |
| 629 | +#wrapper .line { | |
| 630 | + border-bottom: 2px solid #87CEEB; | |
| 631 | + position: absolute; | |
| 632 | + width: 100%; | |
| 633 | + top: 15px; | |
| 634 | +} | |
| 635 | +#wrapper .textbox { | |
| 636 | + position: absolute; | |
| 637 | + width: 100%; | |
| 638 | +} | |
| 639 | +#wrapper .textbox .text { | |
| 640 | + background-color: white; | |
| 641 | + margin: 0px auto; | |
| 642 | + padding: 0px 30px; | |
| 643 | + text-align: center; | |
| 644 | + display: inline; | |
| 645 | + font-size: 24px; | |
| 646 | +} | |
| 647 | + | |
| 648 | +/* Remove white bar in header on IE11 */ | |
| 649 | +.nav-container { | |
| 650 | + min-height: 0px !important; | |
| 651 | +} | |
| 652 | + | |
| 653 | +/* box shadow */ | |
| 654 | +.box-shadow { | |
| 655 | + box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.07); | |
| 656 | +} | |
| 657 | +.no-box-shadow { | |
| 658 | + box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.07); | |
| 659 | +} | |
| 660 | + | |
| 661 | +/*.wpb_wrapper .col-sm-4 .vc_column-inner { | |
| 662 | +box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.07); | |
| 663 | +} */ | |
| 664 | + | |
| 665 | +.featured-news { | |
| 666 | + padding-top: 0px; | |
| 667 | + padding-bottom: 0px; | |
| 668 | + padding-right: 0px; | |
| 669 | +} | |
| 670 | + | |
| 671 | +.feature .boxed { | |
| 672 | + padding: 20px 10px 10px 10px; | |
| 673 | +} | |
| 674 | + | |
| 675 | +/* Top image in boxes */ | |
| 676 | +.top-radius .elementor-image-box-img .vc_single_image-img img { | |
| 677 | + border-radius: 20px 20px 0 0; | |
| 678 | +} | |
| 679 | + | |
| 680 | +.wpb_single_image .vc_single_image-wrapper.vc_box_rounded, .wpb_single_image .vc_single_image-wrapper.vc_box_rounded img { | |
| 681 | + border-radius: 10px 10px 0 0; | |
| 682 | +} | |
| 683 | + | |
| 684 | +.border--round { | |
| 685 | + border-radius: 10px; | |
| 686 | +} | |
| 687 | + | |
| 688 | +/* .all-radius .wpb_single_image .vc_single_image-wrapper.vc_box_rounded, .wpb_single_image .vc_single_image-wrapper.vc_box_rounded img { | |
| 689 | +border-radius: 10px 10px 10px 10px; | |
| 690 | +box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.07); | |
| 691 | +} */ | |
| 692 | + | |
| 693 | +/* Custom Page Element */ | |
| 694 | +.vc_custom_1602515817184 { | |
| 695 | + padding-top: 20px; | |
| 696 | + padding-bottom: 20px; | |
| 697 | +} | |
| 698 | + | |
| 699 | +/* HEADER */ | |
| 700 | +/* Header Logo */ | |
| 701 | +.bar .logo { | |
| 702 | + max-height: 90px; | |
| 703 | +} | |
| 704 | +@media (min-width: 1050px) { | |
| 705 | + .bar .logo { | |
| 706 | + margin-top: -49px; | |
| 707 | + } | |
| 708 | +} | |
| 709 | +@media (max-width: 1050px) { | |
| 710 | + .bar .logo { | |
| 711 | + margin-top: -10px; | |
| 712 | + } | |
| 713 | +} | |
| 714 | +.menu-item-home { | |
| 715 | + margin-top: 9px; | |
| 716 | + margin-right: 5px; | |
| 717 | +} | |
| 718 | + | |
| 719 | +/* Header horizontal menu style */ | |
| 720 | +.bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > a, .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > span { | |
| 721 | + color:#87CEEB; | |
| 722 | +} | |
| 723 | + | |
| 724 | +.bar-1 .menu-horizontal>li>.dropdown__trigger, .bar-1 .menu-horizontal>li>a { | |
| 725 | + font-size: 18px; | |
| 726 | + line-height: 2.166666666666667em; | |
| 727 | + text-transform: none; | |
| 728 | + font-weight: 600; | |
| 729 | + letter-spacing: .5px; | |
| 730 | + color: #0067a5; | |
| 731 | +} | |
| 732 | + | |
| 733 | +.dropdown > .dropdown__trigger:after{ | |
| 734 | + font-size: 20px; | |
| 735 | + bottom: -3px; | |
| 736 | +} | |
| 737 | + | |
| 738 | +.bar-1 .menu-horizontal>li>.dropdown__trigger:hover, .bar-1 .menu-horizontal>li>a:hover { | |
| 739 | + color: #004071; | |
| 740 | +} | |
| 741 | + | |
| 742 | +.menu-horizontal>li:not(:hover)>a, .menu-horizontal>li:not(:hover)>span, .menu-horizontal>li:not(:hover)>.modal-instance>.modal-trigger { | |
| 743 | + opacity: 1; | |
| 744 | +} | |
| 745 | + | |
| 746 | + | |
| 747 | +/* Mobile Menu */ | |
| 748 | + | |
| 749 | +@media (max-width: 768px){ | |
| 750 | + .menu-horizontal>li>a:hover { | |
| 751 | + color: #34ACAA !important; | |
| 752 | + } | |
| 753 | + .menu-horizontal li { | |
| 754 | + font-size: 0.9em; | |
| 755 | + font-weight: 400; | |
| 756 | + color: #666; | |
| 757 | + list-style: none; | |
| 758 | + } | |
| 759 | + .menu-vertical li { | |
| 760 | + font-size: 1.2em; | |
| 761 | + font-weight: 400; | |
| 762 | + color: #666; | |
| 763 | + list-style: none; | |
| 764 | + } | |
| 765 | + .btn--demo { | |
| 766 | + width: 25%; | |
| 767 | + } | |
| 768 | + /* Index F-H page logo positioning */ | |
| 769 | + .vertitop .pos-vertical-center { | |
| 770 | + top: -100px; | |
| 771 | + } | |
| 772 | + /* .wp-image-6925 { | |
| 773 | + margin-bottom: 60px; | |
| 774 | + } */ | |
| 775 | + .vertitop .pos-vertical-center h1 { | |
| 776 | + padding-top: 30px; | |
| 777 | + padding-bottom: 0px; | |
| 778 | + margin-bottom: -30px; | |
| 779 | + } | |
| 780 | + .mob400 p { | |
| 781 | + font-weight: 400; | |
| 782 | + } | |
| 783 | +} | |
| 784 | + | |
| 785 | +/* Header CTA button */ | |
| 786 | +.btn--sm { | |
| 787 | + padding-top: .2em; | |
| 788 | + padding-bottom: .2em; | |
| 789 | + padding-right: 1em; | |
| 790 | + padding-left: 1em; | |
| 791 | +} | |
| 792 | + | |
| 793 | +.btn, .btn a { | |
| 794 | + border-radius: 6px; | |
| 795 | + border: none; | |
| 796 | + border-width: 1px; | |
| 797 | + font-size: inherit; | |
| 798 | + line-height: 1.85714286em; | |
| 799 | +} | |
| 800 | + | |
| 801 | +.btn .btn__text { | |
| 802 | + color: #FFF; | |
| 803 | + font-weight: 600; | |
| 804 | + font-size: 20px; | |
| 805 | + font-family:'Gotham',sans-serif; | |
| 806 | +} | |
| 807 | + | |
| 808 | +.btn--demo, .btn__text a { | |
| 809 | + color: #4a90e2; | |
| 810 | + font-weight: 400; | |
| 811 | +} | |
| 812 | + | |
| 813 | +.btn--demo, .btn--demo:visited { | |
| 814 | + background: #87CEEB; | |
| 815 | + border-color: #fff; | |
| 816 | +} | |
| 817 | + | |
| 818 | +/* Boutons CTA */ | |
| 819 | +.btn--primary, .btn--primary:visited { | |
| 820 | + color: #000000 !important; | |
| 821 | + background: transparent; | |
| 822 | + border-color: #87CEEB; | |
| 823 | +} | |
| 824 | + | |
| 825 | +.btn--primary:active { | |
| 826 | + background: #87CEEB; | |
| 827 | +} | |
| 828 | + | |
| 829 | +/* FOOTER SECTION */ | |
| 830 | +.footer-6 { | |
| 831 | + background: #004071; | |
| 832 | + padding-top: 50px; | |
| 833 | + padding-bottom: 20px; | |
| 834 | +} | |
| 835 | + | |
| 836 | +section, footer { | |
| 837 | + padding-top: 3.42857143em; | |
| 838 | + padding-bottom: 3.42857143em; | |
| 839 | +} | |
| 840 | + | |
| 841 | +/* Footer 1st column */ | |
| 842 | +.textwidget { | |
| 843 | + padding-top: 2em; | |
| 844 | + font-size: 13px; | |
| 845 | + margin-bottom: 10px; | |
| 846 | + text-align: justify; | |
| 847 | +} | |
| 848 | + | |
| 849 | +/* Footer 2nd column */ | |
| 850 | +#nav_menu-2, #nav_menu-3 { | |
| 851 | + padding-left: 60px; | |
| 852 | + margin-bottom: 60px; | |
| 853 | +} | |
| 854 | + | |
| 855 | +footer a { | |
| 856 | + font-weight: 400; | |
| 857 | +} | |
| 858 | + | |
| 859 | +footer ul:not(.list-inline):not(.slides)>li { | |
| 860 | + font-size: 14px; | |
| 861 | + line-height: 1.8em!important; | |
| 862 | +} | |
| 863 | + | |
| 864 | +footer ul li { | |
| 865 | + padding: 0px; | |
| 866 | + list-style: none; | |
| 867 | + margin-left: 5px; | |
| 868 | +} | |
| 869 | + | |
| 870 | +/* Footer 3rd column */ | |
| 871 | +#text-4 { | |
| 872 | + padding-left: 80px; | |
| 873 | +} | |
| 874 | + | |
| 875 | +h6.type--uppercase, .h6.type--uppercase { | |
| 876 | + margin-block-end: -10px; | |
| 877 | +} | |
| 878 | + | |
| 879 | +.alignlefticon { | |
| 880 | + float: none; | |
| 881 | +} | |
| 882 | + | |
| 883 | +/* Footer columns on mobile */ | |
| 884 | +@media (max-width: 768px){ | |
| 885 | + .widget_media_image img { | |
| 886 | + display: block; | |
| 887 | + margin-left: auto; | |
| 888 | + margin-right: auto; | |
| 889 | + } | |
| 890 | + #nav_menu-2, #nav_menu-3 { | |
| 891 | + display: none; | |
| 892 | + padding-left: 150px; | |
| 893 | + margin-top: 30px; | |
| 894 | + } | |
| 895 | + #text-4 h6 { | |
| 896 | + padding-left: 0px; | |
| 897 | + margin-top: 30px; | |
| 898 | + text-align: left; | |
| 899 | + } | |
| 900 | + #text-4 { | |
| 901 | + padding: 0px; | |
| 902 | + } | |
| 903 | + #text-3 .textwidget, #text-4 .textwidget { | |
| 904 | + padding-left: 0px; | |
| 905 | + text-align: left; | |
| 906 | + } | |
| 907 | +} | |
| 908 | + | |
| 909 | +/* Footer sub footer */ | |
| 910 | +.footer-stack-copyright, .menu-item-4840 ul>li { | |
| 911 | + font-size: 14px; | |
| 912 | + text-align: center; | |
| 913 | +} | |
| 914 | + | |
| 915 | +.menu-footer-menu-container>ul>li { | |
| 916 | + font-size: 14px; | |
| 917 | + display: inline; | |
| 918 | + padding: 0px 10px 0px 10px | |
| 919 | +} | |
| 920 | + | |
| 921 | +/* How to not impact header menu? */ | |
| 922 | +.menu-footer-menu, .menu-item-type-post_type:not(:last-child) { | |
| 923 | + border-right: 0px solid #bbb; | |
| 924 | +} | |
| 925 | + | |
| 926 | +.menu-footer-menu, .menu-item-type-post_type:last-child { | |
| 927 | + border-right: 0px; | |
| 928 | +} | |
| 929 | + | |
| 930 | +.vc_btn3.vc_btn3-size-lg { | |
| 931 | + font-size: 18px; | |
| 932 | + font-weight: 400; | |
| 933 | + padding-top: 16px; | |
| 934 | + padding-bottom: 20px; | |
| 935 | + padding-left: 40px; | |
| 936 | + padding-right: 40px; | |
| 937 | +} | |
| 938 | + | |
| 939 | +.vc_btn3.vc_btn3-color-orange, .vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat { | |
| 940 | + color: #000000; | |
| 941 | + background-color: #87CEEB; | |
| 942 | +} | |
| 943 | + | |
| 944 | + | |
| 945 | +/* TEMPLATE LAYOUT */ | |
| 946 | +/* 5 column layout */ | |
| 947 | +@media (min-width: 768px){ | |
| 948 | + .column5 { | |
| 949 | + width: 16%; | |
| 950 | + margin: 0 2%; | |
| 951 | + float:left; | |
| 952 | + } | |
| 953 | + .column6 { | |
| 954 | + width: 12%; | |
| 955 | + margin: 0 2%; | |
| 956 | + float:left; | |
| 957 | + } | |
| 958 | +} | |
| 959 | + | |
| 960 | +/* BLOG */ | |
| 961 | +/* Note: Grid template: loop/content-post-cards.php */ | |
| 962 | +/* Blog post font style */ | |
| 963 | +article .article__body p, article .article__body ul { | |
| 964 | + font-size: 1.1em; | |
| 965 | + line-height: 1.6em; | |
| 966 | + font-weight: 400; | |
| 967 | + color: black; | |
| 968 | +} | |
| 969 | + | |
| 970 | +.wpb_wrapper a { | |
| 971 | + color: #13223f; | |
| 972 | + text-decoration-line: none; | |
| 973 | +} | |
| 974 | + | |
| 975 | +.vc_custom_heading a, .vc_custom_heading a:focus, .vc_custom_heading a:hover, .vc_custom_heading a:visited { | |
| 976 | + font-size: 1em; | |
| 977 | + line-height: 1.3em; | |
| 978 | + font-weight: 400; | |
| 979 | + color: #13223f; | |
| 980 | + text-decoration-line: none; | |
| 981 | +} | |
| 982 | + | |
| 983 | +/* Style Most Recent Articles List */ | |
| 984 | +.sidebar li { | |
| 985 | + font-size: 1em; | |
| 986 | + line-height: 1.2em; | |
| 987 | + font-weight: 400; | |
| 988 | + padding-bottom: 10px; | |
| 989 | +} | |
| 990 | + | |
| 991 | +/* Remove pagination after 3 latest blog post on homepage */ | |
| 992 | +.nopagination .pagination { | |
| 993 | + display: none; | |
| 994 | +} | |
| 995 | + | |
| 996 | +/* Vertical Spacing in Grid view */ | |
| 997 | +.masonry__item:not(:empty) { | |
| 998 | + margin-bottom: 0px; | |
| 999 | + transform-style: preserve-3d; | |
| 1000 | +} | |
| 1001 | + | |
| 1002 | +/* Category label in Grid mode */ | |
| 1003 | +.label { | |
| 1004 | + display: inline-block; | |
| 1005 | + font-size: 9px; | |
| 1006 | + font-weight: 700; | |
| 1007 | + letter-spacing: .5px; | |
| 1008 | + color: #000; | |
| 1009 | + text-transform: uppercase; | |
| 1010 | + height: 26px; | |
| 1011 | + min-width: 65px; | |
| 1012 | + padding: 0 10px; | |
| 1013 | + text-align: center; | |
| 1014 | + border-radius: 0px 20px 20px 0px; | |
| 1015 | + position: relative; | |
| 1016 | + z-index: 3; | |
| 1017 | + top: 8.5em; | |
| 1018 | + left: 0em; | |
| 1019 | +} | |
| 1020 | +.label:not([class*='bg--']) { | |
| 1021 | + background: #87CEEB; | |
| 1022 | +} | |
| 1023 | + | |
| 1024 | +.wpcf7-form p label { | |
| 1025 | + color: #004071 !important; | |
| 1026 | + font-size:18px !important; | |
| 1027 | +} | |
| 1028 | +.label-2 { | |
| 1029 | + display: inline-block; | |
| 1030 | + font-size: 9px; | |
| 1031 | + font-weight: 700; | |
| 1032 | + letter-spacing: .5px; | |
| 1033 | + color: #fff; | |
| 1034 | + text-transform: uppercase; | |
| 1035 | + height: 26px; | |
| 1036 | + min-width: 65px; | |
| 1037 | + padding: 0 20px; | |
| 1038 | + text-align: center; | |
| 1039 | + border-radius: 0px 20px 20px 0px; | |
| 1040 | + position: relative; | |
| 1041 | + z-index: 3; | |
| 1042 | + top: -26em; | |
| 1043 | + left: 0em; | |
| 1044 | +} | |
| 1045 | + | |
| 1046 | +.label-2:not([class*='bg--']) { | |
| 1047 | + background: #87CEEB; | |
| 1048 | +} | |
| 1049 | + | |
| 1050 | +/* Hide breadcrumb in Tag page */ | |
| 1051 | +.breadcrumbs { | |
| 1052 | + display: none; | |
| 1053 | +} | |
| 1054 | +.breadcrumb--section .background-image-holder { | |
| 1055 | + height: 280px; | |
| 1056 | + background-color:#ffffff !important; | |
| 1057 | +} | |
| 1058 | + | |
| 1059 | +.team-title { | |
| 1060 | + padding-top: 30px; | |
| 1061 | + margin-top: 30px; | |
| 1062 | +} | |
| 1063 | + | |
| 1064 | +/* CONTACT FORM */ | |
| 1065 | +.titre-champ { | |
| 1066 | + font-size: 1.1em; | |
| 1067 | + line-height: 1.4em; | |
| 1068 | + font-weight: 400; | |
| 1069 | + margin-bottom: 1em; | |
| 1070 | +} | |
| 1071 | + | |
| 1072 | +input[type], select, textarea { | |
| 1073 | + margin-bottom: 0.5em; | |
| 1074 | + margin-top: 0.5em; | |
| 1075 | + border:1.5px solid #004071; | |
| 1076 | +} | |
| 1077 | +input[type="checkbox"] { | |
| 1078 | + width: 13px !important ; | |
| 1079 | + -webkit-appearance: checkbox !important; | |
| 1080 | +} | |
| 1081 | + | |
| 1082 | +span.wpcf7-list-item { | |
| 1083 | + display: inline-block; | |
| 1084 | + margin: 0 0 0 0; | |
| 1085 | +} | |
| 1086 | + | |
| 1087 | +button[type="submit"]:not([class*='col-']) { | |
| 1088 | + width: 30%; | |
| 1089 | +} | |
| 1090 | + | |
| 1091 | +.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output { | |
| 1092 | + border-color: #D90000; | |
| 1093 | + border-radius: 25px; | |
| 1094 | +} | |
| 1095 | + | |
| 1096 | +.wpcf7 form.sent .wpcf7-response-output { | |
| 1097 | + border-color: #3767D9; | |
| 1098 | + width: 50%; | |
| 1099 | +} | |
| 1100 | + | |
| 1101 | +/* Apply custom style to all CF7 checkboxes */ | |
| 1102 | +.wpcf7 input[type="checkbox"] { | |
| 1103 | + opacity: 0; | |
| 1104 | + position: absolute; | |
| 1105 | + width: 25px; | |
| 1106 | + height: 25px; | |
| 1107 | + margin: 0; | |
| 1108 | + z-index: 2; | |
| 1109 | + cursor: pointer; | |
| 1110 | +} | |
| 1111 | + | |
| 1112 | +.wpcf7 .wpcf7-list-item { | |
| 1113 | + position: relative; | |
| 1114 | + padding-left: 28px; | |
| 1115 | + display: inline-block; | |
| 1116 | + cursor: pointer; | |
| 1117 | +} | |
| 1118 | + | |
| 1119 | +.wpcf7 input[type="checkbox"] + span::before { | |
| 1120 | + content: ""; | |
| 1121 | + position: absolute; | |
| 1122 | + left: 0; | |
| 1123 | + top: 0; | |
| 1124 | + width: 25px; | |
| 1125 | + height: 25px; | |
| 1126 | + border: 1px solid #004071; | |
| 1127 | + background-color: white; | |
| 1128 | + box-sizing: border-box; | |
| 1129 | + border-radius: 0px; | |
| 1130 | + transition: all 0.2s ease; | |
| 1131 | + margin-top:5px; | |
| 1132 | +} | |
| 1133 | + | |
| 1134 | +.wpcf7 input[type="checkbox"]:checked + span::before { | |
| 1135 | + background-image: linear-gradient(#004071, #004071); | |
| 1136 | + background-clip: content-box; | |
| 1137 | + padding: 2px; /* this creates the white gap between border and inner fill */ | |
| 1138 | +} | |
| 1139 | + | |
| 1140 | + | |
| 1141 | +@media (max-width: 768px){ | |
| 1142 | + input:not([class*='col-']), select:not([class*='col-']), .input-select:not([class*='col-']), textarea:not([class*='col-']) { | |
| 1143 | + width: 100%; | |
| 1144 | + margin-top:0; | |
| 1145 | + } | |
| 1146 | + .menu-item>a{ | |
| 1147 | + color:#000000 !important; | |
| 1148 | + } | |
| 1149 | + button[type="submit"]:not([class*='col-']) { | |
| 1150 | + width: 50%; | |
| 1151 | + } | |
| 1152 | + .wpcf7 form.sent .wpcf7-response-output { | |
| 1153 | + width: 100%; | |
| 1154 | + } | |
| 1155 | +} | |
| 1156 | + | |
| 1157 | +/* Hide Captcha all pages */ | |
| 1158 | +body:not(.page-id-XX) .grecaptcha-badge { | |
| 1159 | + display: none; | |
| 1160 | +} | |
| 1161 | + | |
| 1162 | +/*css pour les offres*/ | |
| 1163 | +li.location a.google_map_link { | |
| 1164 | + color: #87CEEB; | |
| 1165 | + text-decoration: none; | |
| 1166 | + transition: color 0.3s ease; | |
| 1167 | +} | |
| 1168 | +li.location a.google_map_link:hover { | |
| 1169 | + color: #0022CC; | |
| 1170 | +} | |
| 1171 | +h1.h2 { | |
| 1172 | + background-image: url('https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/07/SITE_TALENTS_CHUM_PHOTO_1900_V1-06.jpg'); | |
| 1173 | + background-repeat: no-repeat; | |
| 1174 | + background-position: center center; | |
| 1175 | + background-size: 105vw 60vh; | |
| 1176 | + background-attachment: scroll; | |
| 1177 | + color: white; | |
| 1178 | + padding: 40px 20px; | |
| 1179 | + height:40vh; | |
| 1180 | +} | |
| 1181 | +li.job-type.temps-complet , li.job-type.temps-partiel-regulier, li.job-type.temps-partiel-occasionnel{ | |
| 1182 | + background-color: #87CEEB !important; | |
| 1183 | + color: white !important; | |
| 1184 | + text-align: center !important; | |
| 1185 | + justify-content: center !important; | |
| 1186 | + text-align: center !important; | |
| 1187 | + padding-top:10px !important; | |
| 1188 | + padding-right:10px !important; | |
| 1189 | + border-radius: 10px; | |
| 1190 | + color: black !important; | |
| 1191 | +} | |
| 1192 | +ul.job-listing-meta li { | |
| 1193 | + display: block; | |
| 1194 | +} | |
| 1195 | +ul.job-listing-meta { | |
| 1196 | + display: none; | |
| 1197 | +} | |
| 1198 | +input.application_button.button { | |
| 1199 | + background-color: #fff; | |
| 1200 | + color: #004071; | |
| 1201 | + border: none; | |
| 1202 | + width:auto; | |
| 1203 | + cursor: pointer; | |
| 1204 | + transition: background-color 0.3s ease; | |
| 1205 | +} | |
| 1206 | +input.application_button.button:hover { | |
| 1207 | + background-color: #004071 ; | |
| 1208 | + color:#fff; | |
| 1209 | +} | |
| 1210 | +div.addtoany_share_save_container { | |
| 1211 | + display: none; | |
| 1212 | +} | |
| 1213 | +.job_description h1, | |
| 1214 | +.job_description h2, | |
| 1215 | +.job_description h3, | |
| 1216 | +.job_description h4, | |
| 1217 | +.job_description h5, | |
| 1218 | +.job_description h6 { | |
| 1219 | + margin-bottom: 10px; | |
| 1220 | + margin-top: 20px; | |
| 1221 | + color:#000; | |
| 1222 | + font-weight: bold; | |
| 1223 | + font-size:25px; | |
| 1224 | +} | |
| 1225 | +.job_description { | |
| 1226 | + font-size:19px; | |
| 1227 | +} | |
| 1228 | + | |
| 1229 | +.single_job_listing hr{ | |
| 1230 | + border-color: #16375E50 !important; | |
| 1231 | +} | |
| 1232 | +.single_job_listing .default-text{ | |
| 1233 | + padding-bottom:20px; | |
| 1234 | + border-bottom: 1px solid #16375E50; | |
| 1235 | +} | |
| 1236 | +.single_job_listing .job_description h2{ | |
| 1237 | + padding-top:50px; | |
| 1238 | +} | |
| 1239 | +li.wpjmef-field-salary { | |
| 1240 | + display: none !important; | |
| 1241 | +} | |
| 1242 | +img.company_logo { | |
| 1243 | + display: none; | |
| 1244 | +} | |
| 1245 | +/* | |
| 1246 | +ul.meta { | |
| 1247 | + width: 100% !important; | |
| 1248 | + margin-top: 10px !important; | |
| 1249 | + display: flex; | |
| 1250 | + align-items: center; | |
| 1251 | +} | |
| 1252 | +ul.meta li { | |
| 1253 | + display: inline !important; | |
| 1254 | +}*/ | |
| 1255 | + | |
| 1256 | +/*hide copyright in footer*/ | |
| 1257 | +div.footer__lower.text-center-xs { | |
| 1258 | + display: none; | |
| 1259 | +} | |
| 1260 | +.alignleft { | |
| 1261 | + margin-right: 10px !important; | |
| 1262 | +} | |
| 1263 | +/*hide le + dans les offres*/ | |
| 1264 | +.a2a_dd.addtoany_share_save.addtoany_share { | |
| 1265 | + display: none; | |
| 1266 | +} | |
| 1267 | +/*hide the alerte button in Liste des offres d’emplois*/ | |
| 1268 | +a.alert { | |
| 1269 | + display: none; | |
| 1270 | +} | |
| 1271 | +/* Hide borders and set background to white for ul and its li children in job types*/ | |
| 1272 | +ul.job_types { | |
| 1273 | + list-style: none !important; | |
| 1274 | + padding: 0 !important; | |
| 1275 | + border: none !important; | |
| 1276 | + background-color: transparent !important; | |
| 1277 | +} | |
| 1278 | +ul.job_types li { | |
| 1279 | + border: none !important; | |
| 1280 | + font-size: 125%; | |
| 1281 | +} | |
| 1282 | +.showing_jobs { | |
| 1283 | + background-color:#7cafde82 !important; | |
| 1284 | +} | |
| 1285 | + | |
| 1286 | +.job-type { | |
| 1287 | + margin-right: 20px; | |
| 1288 | +} | |
| 1289 | + | |
| 1290 | +div.job-location { | |
| 1291 | + font-weight: bold; | |
| 1292 | + margin-top: -6.5%; | |
| 1293 | +} | |
| 1294 | + | |
| 1295 | +.before-job button.application_button.button { | |
| 1296 | + color: white; | |
| 1297 | + border: 2px solid #ffffff; | |
| 1298 | + cursor: pointer; | |
| 1299 | + transition: background-color 0.3s ease; | |
| 1300 | + border-radius: 30px; | |
| 1301 | + font-weight:700; | |
| 1302 | +} | |
| 1303 | + | |
| 1304 | +.before-job button.application_button.button:hover { | |
| 1305 | + color: #483388; | |
| 1306 | + background: #ffffff; | |
| 1307 | +} | |
| 1308 | +.before-job .job_application.application{ | |
| 1309 | + margin-top: -110px; | |
| 1310 | + z-index: 10; | |
| 1311 | + position: relative; | |
| 1312 | +} | |
| 1313 | + | |
| 1314 | +.job-manager-single-alert-link a { | |
| 1315 | + color: #6BA4BB; | |
| 1316 | +} | |
| 1317 | +.job-manager-single-alert-link a:hover { | |
| 1318 | + color: #B3E0F7; | |
| 1319 | +} | |
| 1320 | +.back-link { | |
| 1321 | + display: block; | |
| 1322 | + width: 100%; | |
| 1323 | + margin-bottom: -77.5px; | |
| 1324 | + margin-left: -10px; | |
| 1325 | +} | |
| 1326 | +.job-type-location .job-type, | |
| 1327 | +.job-type-location .job-location, | |
| 1328 | +.job-type-location .job-time-left{ | |
| 1329 | + margin-right: 20px; | |
| 1330 | + color: #004071; | |
| 1331 | + font-size: 19px; | |
| 1332 | + font-weight: normal; | |
| 1333 | +} | |
| 1334 | + | |
| 1335 | +.application_details { | |
| 1336 | + background-color: white; | |
| 1337 | +} | |
| 1338 | + | |
| 1339 | +.back-link a { | |
| 1340 | + color: #767676; | |
| 1341 | +} | |
| 1342 | +.back-link a:hover { | |
| 1343 | + color: gray; | |
| 1344 | +} | |
| 1345 | + | |
| 1346 | +.job-type-location span { | |
| 1347 | + font-family: 'Gotham',sans-serif; | |
| 1348 | +} | |
| 1349 | + | |
| 1350 | +.search_submit { | |
| 1351 | + text-align: right; | |
| 1352 | +} | |
| 1353 | + | |
| 1354 | +@media screen and (max-width: 768px) { | |
| 1355 | + .job_application { | |
| 1356 | + flex: 100%; | |
| 1357 | + justify-content: flex-start; | |
| 1358 | + } | |
| 1359 | +} | |
| 1360 | + | |
| 1361 | +.input-select { | |
| 1362 | + display: block; | |
| 1363 | +} | |
| 1364 | + | |
| 1365 | +div.search_categories { | |
| 1366 | + padding-top:10px !important; | |
| 1367 | +} | |
| 1368 | +.search_jobs { | |
| 1369 | + display: flex ; | |
| 1370 | + flex-wrap: wrap ; | |
| 1371 | +} | |
| 1372 | +.search_submit { | |
| 1373 | + flex: 30%; | |
| 1374 | +} | |
| 1375 | + | |
| 1376 | +.search_location { | |
| 1377 | + width: 100% !important; | |
| 1378 | + padding-top: 10px; | |
| 1379 | + padding-left:0 !important; | |
| 1380 | + flex: 1; | |
| 1381 | + min-width: 0; | |
| 1382 | +} | |
| 1383 | + | |
| 1384 | +.search_location .input-select { | |
| 1385 | + display: block; | |
| 1386 | +} | |
| 1387 | + | |
| 1388 | +.search_keywords { | |
| 1389 | + width: 100% !important; | |
| 1390 | + padding-top: 10px; | |
| 1391 | + padding-left:0 !important; | |
| 1392 | + padding-right:0 !important; | |
| 1393 | + flex: 2; | |
| 1394 | + min-width: 0; | |
| 1395 | +} | |
| 1396 | + | |
| 1397 | +.location-n-cat .location-n-cat:has(.search_keywords) { | |
| 1398 | + width: 100%; | |
| 1399 | + display: flex; | |
| 1400 | + gap: 10px; | |
| 1401 | + flex-wrap: wrap; | |
| 1402 | +} | |
| 1403 | + | |
| 1404 | +.search_submit { | |
| 1405 | + margin-top: 10px; | |
| 1406 | +} | |
| 1407 | + | |
| 1408 | +/* Adjustments for select dropdowns */ | |
| 1409 | +/* Hide the comments */ | |
| 1410 | +.comments { | |
| 1411 | + display: none; | |
| 1412 | +} | |
| 1413 | +/* Hide the comment form */ | |
| 1414 | +.comments-form { | |
| 1415 | + display: none; | |
| 1416 | +} | |
| 1417 | + | |
| 1418 | +input:not([class*='col-']), select:not([class*='col-']), .input-select:not([class*='col-']), textarea:not([class*='col-']) { | |
| 1419 | + width: 100%; | |
| 1420 | + margin-top:0; | |
| 1421 | +} | |
| 1422 | + | |
| 1423 | +#search_location { | |
| 1424 | + background-color: transparent; | |
| 1425 | + border: 2px solid #004071; | |
| 1426 | + border-radius: 10px; | |
| 1427 | + padding-top: 10px; | |
| 1428 | + padding-top: 5px; | |
| 1429 | + font-size: 16px; | |
| 1430 | +} | |
| 1431 | +.input-select:after { | |
| 1432 | + position: absolute; | |
| 1433 | + right: 0; | |
| 1434 | + height: 100%; | |
| 1435 | + top: 0; | |
| 1436 | + font-size: 40px; | |
| 1437 | + font-weight: 700; | |
| 1438 | + color: #13223f !important; | |
| 1439 | + transform: rotate(90deg); | |
| 1440 | + content: '\203A'; | |
| 1441 | + pointer-events: none; | |
| 1442 | + border-left: none; | |
| 1443 | + line-height: 60px; | |
| 1444 | +} | |
| 1445 | +#search_keywords { | |
| 1446 | + background-color: transparent; | |
| 1447 | + border: 2px solid #004071; | |
| 1448 | + border-radius: 10px; | |
| 1449 | + color: #004071 !important; | |
| 1450 | +} | |
| 1451 | +input[type]:focus, select:focus, textarea:focus { | |
| 1452 | + border-color: #2b546b !important; | |
| 1453 | +} | |
| 1454 | +select { | |
| 1455 | + color: #B3B3BD; | |
| 1456 | +} | |
| 1457 | +@media screen and (max-width: 767px) { | |
| 1458 | + input[type="submit"] { | |
| 1459 | + width: 100% !important; | |
| 1460 | + font-size:18px!important; | |
| 1461 | + } | |
| 1462 | + | |
| 1463 | +} | |
| 1464 | +.fas.fa-calendar, .fas.fa-clock, .fas.fa-map-marker-alt { | |
| 1465 | + color: #004071; | |
| 1466 | + margin-right:5px; | |
| 1467 | +} | |
| 1468 | + | |
| 1469 | +.footer-6 { | |
| 1470 | + position: absolute; | |
| 1471 | + left: 0; | |
| 1472 | + right: 0; | |
| 1473 | + width: 100%; | |
| 1474 | + margin-top:10px; | |
| 1475 | +} | |
| 1476 | + | |
| 1477 | +.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn--primary { | |
| 1478 | + background-color: #004071; | |
| 1479 | + color: #fff !important; | |
| 1480 | + width: auto; | |
| 1481 | + padding: 0px 15px ; | |
| 1482 | + font-size:23px; | |
| 1483 | + margin-top: 10px; | |
| 1484 | + font-family:'Gotham',sans-serif; | |
| 1485 | + height:auto; | |
| 1486 | + box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3);} | |
| 1487 | + | |
| 1488 | +.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn--primary:hover{ | |
| 1489 | + background-color: #fff; | |
| 1490 | + color:#004071 !important; | |
| 1491 | + border:1px solid #004071; | |
| 1492 | +} | |
| 1493 | + | |
| 1494 | +.masonry { | |
| 1495 | + transform: scale(0.6); | |
| 1496 | + margin-top: -50%; | |
| 1497 | + margin-bottom: -40%; | |
| 1498 | +} | |
| 1499 | + | |
| 1500 | +.masonry__item h4 { | |
| 1501 | + transform: scale(1.3); | |
| 1502 | +} | |
| 1503 | + | |
| 1504 | +div.article__title + span { | |
| 1505 | + display: none; | |
| 1506 | +} | |
| 1507 | + | |
| 1508 | +.bar__module a.btn--demo { | |
| 1509 | + background-color: #004071; | |
| 1510 | + border-radius: 5px; | |
| 1511 | + padding:5px 25px; | |
| 1512 | + width:auto; | |
| 1513 | +} | |
| 1514 | +.btn--demo .btn__text::before { | |
| 1515 | + content: ""; | |
| 1516 | + display: none; | |
| 1517 | + width: 20px; | |
| 1518 | + height: 20px; | |
| 1519 | + margin-right: 8px; | |
| 1520 | + background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='white' stroke-width='2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 4-6 8-6s8 2 8 6'/%3E%3C/svg%3E"); | |
| 1521 | + background-size: contain; | |
| 1522 | + background-repeat: no-repeat; | |
| 1523 | + vertical-align: middle; | |
| 1524 | +} | |
| 1525 | + | |
| 1526 | +#menu1 { | |
| 1527 | + padding-top: 60px; | |
| 1528 | +} | |
| 1529 | + | |
| 1530 | +.flickity-page-dots .dot { | |
| 1531 | + display: none; | |
| 1532 | +} | |
| 1533 | + | |
| 1534 | +.wpcf7-list-item-label { | |
| 1535 | + font-size: 17px; | |
| 1536 | + display: inline-block; | |
| 1537 | + vertical-align: top; | |
| 1538 | + padding-left: 0.4em; | |
| 1539 | + line-height: 30px; | |
| 1540 | + color:#004071; | |
| 1541 | +} | |
| 1542 | +.wpcf7-form a{ | |
| 1543 | + color:#000; | |
| 1544 | + font-weight:600; | |
| 1545 | +} | |
| 1546 | + | |
| 1547 | +.wpcf7-list-item-label a{ | |
| 1548 | + font-weight:700; | |
| 1549 | + color:#004071; | |
| 1550 | +} | |
| 1551 | + | |
| 1552 | +.wpcf7-list-item label { | |
| 1553 | + display: flex; | |
| 1554 | + align-items: flex-start; | |
| 1555 | +} | |
| 1556 | + | |
| 1557 | +.wpcf7-list-item input[type="checkbox"] { | |
| 1558 | + margin-top: 0.2em; | |
| 1559 | +} | |
| 1560 | + | |
| 1561 | +#menu-vertical-menu-footer .menu-item { | |
| 1562 | + margin-left: 20px; | |
| 1563 | +} | |
| 1564 | + | |
| 1565 | +/* Hériter du style pour les Exigences et le Mandat dans une offre d'emploi */ | |
| 1566 | +.default-text * { | |
| 1567 | + font-size: inherit !important; | |
| 1568 | + padding-top: inherit !important; | |
| 1569 | + font-family: inherit !important; | |
| 1570 | + background-color: inherit !important; | |
| 1571 | +} | |
| 1572 | + | |
| 1573 | +/* Hériter du style pour Informations_de_base et Conditions_de_travail dans une offre d'emploi */ | |
| 1574 | +.Informations_de_base *, .Conditions_de_travail * { | |
| 1575 | + font-size: inherit !important; | |
| 1576 | +} | |
| 1577 | + | |
| 1578 | +/*homepage hero menu*/ | |
| 1579 | +.full-width-div { | |
| 1580 | + display: flex; | |
| 1581 | + flex-wrap: wrap; | |
| 1582 | + justify-content: space-between; | |
| 1583 | +} | |
| 1584 | + | |
| 1585 | +.image-container { | |
| 1586 | + width: calc(33.33% - 5px); | |
| 1587 | + flex-grow: 1; | |
| 1588 | + position: relative; | |
| 1589 | + text-align: center; | |
| 1590 | + font-weight: bold; | |
| 1591 | + display: inline-block; | |
| 1592 | + margin: 0; | |
| 1593 | + padding: 0; | |
| 1594 | + box-sizing: border-box; | |
| 1595 | +} | |
| 1596 | +.image-container::after { | |
| 1597 | + content: ""; | |
| 1598 | + position: absolute; | |
| 1599 | + inset: 0; | |
| 1600 | + background: linear-gradient( | |
| 1601 | + to bottom, | |
| 1602 | + rgba(230, 159, 67, 0.2) 25%, | |
| 1603 | + rgb(51, 46, 116, 0.9) 100% | |
| 1604 | + ); | |
| 1605 | + pointer-events: none; | |
| 1606 | + z-index:0; | |
| 1607 | +} | |
| 1608 | +.image-container:hover::after { | |
| 1609 | + background: linear-gradient( | |
| 1610 | + to bottom, | |
| 1611 | + rgb(44, 142, 151, 0.9) 30%, | |
| 1612 | + rgba(74, 39, 133, 0.9) 90% | |
| 1613 | + ); | |
| 1614 | +} | |
| 1615 | +.image-container img { | |
| 1616 | + width: 100%; | |
| 1617 | + max-width: 100%; | |
| 1618 | + height: auto; | |
| 1619 | + margin-bottom: 0px; | |
| 1620 | + display: block; | |
| 1621 | +} | |
| 1622 | +.image-container .text { | |
| 1623 | + position: absolute; | |
| 1624 | + bottom: 0; | |
| 1625 | + left: 0; | |
| 1626 | + width: 100%; | |
| 1627 | + text-align: center; | |
| 1628 | + padding: 10px; | |
| 1629 | + z-index: 1; | |
| 1630 | + transform: translateY(0); | |
| 1631 | + transition: | |
| 1632 | + top 0.4s ease, | |
| 1633 | + bottom 0.4s ease, | |
| 1634 | + transform 0.4s ease, | |
| 1635 | + background 0.4s ease, | |
| 1636 | + opacity 0.4s ease; | |
| 1637 | +} | |
| 1638 | +.image-container:hover .text { | |
| 1639 | + bottom: auto; | |
| 1640 | + top: 50%; | |
| 1641 | + transform: translateY(-50%); | |
| 1642 | +} | |
| 1643 | +.image-container .text span { | |
| 1644 | + color: white; | |
| 1645 | + font-size: 25px; | |
| 1646 | + font-weight: normal; | |
| 1647 | + z-index: 1; | |
| 1648 | +} | |
| 1649 | + | |
| 1650 | +@media (max-width: 767px) { | |
| 1651 | + .image-container { | |
| 1652 | + width: 100%; | |
| 1653 | + } | |
| 1654 | + .text span { | |
| 1655 | + font-size: 20px; | |
| 1656 | + line-height: 75%; | |
| 1657 | + } | |
| 1658 | +} | |
| 1659 | + | |
| 1660 | +.hero-text { | |
| 1661 | + color: white; | |
| 1662 | + position: relative; | |
| 1663 | +} | |
| 1664 | + | |
| 1665 | +.hero-text span { | |
| 1666 | + display: block; | |
| 1667 | + margin: 11px 0 17px 0; | |
| 1668 | + font-size: 30px; | |
| 1669 | + color: white; | |
| 1670 | + position: relative; | |
| 1671 | +} | |
| 1672 | + | |
| 1673 | +/*single job*/ | |
| 1674 | +.article__title { | |
| 1675 | + margin-bottom: -60px !important; | |
| 1676 | + margin-top: -60px !important; | |
| 1677 | + margin-left: -150% !important; | |
| 1678 | + margin-right: -150% !important; | |
| 1679 | + position: relative; | |
| 1680 | + z-index:5; | |
| 1681 | +} | |
| 1682 | +.article__title.text-center h1 { | |
| 1683 | + padding-left: 37.5555%; | |
| 1684 | + padding-right: 40%; | |
| 1685 | + padding-bottom: 125px; | |
| 1686 | + padding-top: 100px; | |
| 1687 | + font-size: 40px; | |
| 1688 | +} | |
| 1689 | + | |
| 1690 | +.vc_row.HeroNoPadding [class*="col-"] { | |
| 1691 | + padding-left: 0 !important; | |
| 1692 | + padding-right: 0 !important; | |
| 1693 | + margin-left: 0px; | |
| 1694 | + margin-right: 0px; | |
| 1695 | +} | |
| 1696 | + | |
| 1697 | +.article__title.text-center { | |
| 1698 | + text-align: left; | |
| 1699 | +} | |
| 1700 | + | |
| 1701 | +.nowrap { | |
| 1702 | + white-space: nowrap; | |
| 1703 | +} | |
| 1704 | + | |
| 1705 | +/*job listing*/ | |
| 1706 | +.load_more_jobs strong { | |
| 1707 | + font-size: 20px; | |
| 1708 | + color: black; | |
| 1709 | + font-weight: bold ; | |
| 1710 | +} | |
| 1711 | + | |
| 1712 | + | |
| 1713 | +/*home page hero*/ | |
| 1714 | +.hero-video::after { | |
| 1715 | + content: ""; | |
| 1716 | + position: absolute; | |
| 1717 | + inset: 0; | |
| 1718 | + background: linear-gradient( | |
| 1719 | + to bottom, | |
| 1720 | + rgba(230, 159, 67, 0.3) 0%, | |
| 1721 | + rgba(74, 39, 133, 0.8) 90% | |
| 1722 | + ); | |
| 1723 | + z-index: 1; | |
| 1724 | + pointer-events: none; | |
| 1725 | +} | |
| 1726 | + | |
| 1727 | +a.su-button.su-button-style-flat.hero-btn{ | |
| 1728 | + border: 4px solid #34ACAA !important; | |
| 1729 | +} | |
| 1730 | + | |
| 1731 | +a.su-button.su-button-style-flat.hero-btn:hover{ | |
| 1732 | + background-color: #ffffff !important; | |
| 1733 | +} | |
| 1734 | +a.su-button.su-button-style-flat { | |
| 1735 | + transition: background-color 0.3s ease; | |
| 1736 | +} | |
| 1737 | +a.su-button.su-button-style-flat span { | |
| 1738 | + transition: color 0.3s ease; | |
| 1739 | +} | |
| 1740 | +a.su-button.su-button-style-flat.hero-btn:hover span{ | |
| 1741 | + color: #34ACAA !important; | |
| 1742 | +} | |
| 1743 | + | |
| 1744 | + | |
| 1745 | +/*search*/ | |
| 1746 | +.job_filters { | |
| 1747 | + background-color: transparent; | |
| 1748 | + border: none; | |
| 1749 | +} | |
| 1750 | + | |
| 1751 | +.job_filters label { | |
| 1752 | + font-weight: bold; | |
| 1753 | +} | |
| 1754 | + | |
| 1755 | +.job_filters input[type="text"], | |
| 1756 | +.job_filters input[type="number"] { | |
| 1757 | + width: 100%; | |
| 1758 | + padding: 10px; | |
| 1759 | + border: 1px solid #ccc; | |
| 1760 | + border-radius: 3px; | |
| 1761 | +} | |
| 1762 | + | |
| 1763 | +.job_filters input[type="submit"] { | |
| 1764 | + background-color: #0032FF; | |
| 1765 | + color: #fff; | |
| 1766 | + padding: 10px 20px; | |
| 1767 | + border: none; | |
| 1768 | + border-radius: 3px; | |
| 1769 | + cursor: pointer; | |
| 1770 | +} | |
| 1771 | + | |
| 1772 | +.job_filters input[type="submit"]:hover { | |
| 1773 | + background-color: #0022CC; | |
| 1774 | +} | |
| 1775 | + | |
| 1776 | +.job_filters .job_types li{ | |
| 1777 | + padding-left:0px | |
| 1778 | +} | |
| 1779 | + | |
| 1780 | + | |
| 1781 | +ul.job_types li { | |
| 1782 | + list-style: none !IMPORTANT; | |
| 1783 | +} | |
| 1784 | +.input-select { | |
| 1785 | + display: none; | |
| 1786 | +} | |
| 1787 | +.rss_link { | |
| 1788 | + display: none; | |
| 1789 | +} | |
| 1790 | +.alignnone { | |
| 1791 | + width: 100%; | |
| 1792 | + height: auto; | |
| 1793 | +} | |
| 1794 | + | |
| 1795 | +.wpcf7-checkbox .wpcf7-list-item { | |
| 1796 | + display: inline-block; | |
| 1797 | + width: 31%; | |
| 1798 | + box-sizing: border-box; | |
| 1799 | + vertical-align: top; | |
| 1800 | + margin-top:20px; | |
| 1801 | +} | |
| 1802 | +.wpcf7-checkbox .wpcf7-list-item:nth-child(3n) { | |
| 1803 | + clear: both; | |
| 1804 | +} | |
| 1805 | + | |
| 1806 | + | |
| 1807 | +/* home page bsl special */ | |
| 1808 | +.custom-checklist { | |
| 1809 | + list-style: none; | |
| 1810 | + padding: 0; | |
| 1811 | + margin: 30px 0 0 0 !important; | |
| 1812 | +} | |
| 1813 | + | |
| 1814 | +.custom-checklist li { | |
| 1815 | + display: flex; | |
| 1816 | + align-items: flex-start; | |
| 1817 | + margin-left: 0px !important; | |
| 1818 | + font-size: 19px; | |
| 1819 | + color: #16375E; | |
| 1820 | +} | |
| 1821 | + | |
| 1822 | +.check-icon { | |
| 1823 | + flex-shrink: 0; | |
| 1824 | + margin-right: 10px; | |
| 1825 | + margin-top: -3px; | |
| 1826 | +} | |
| 1827 | + | |
| 1828 | +.button-row { | |
| 1829 | + display: flex; | |
| 1830 | + gap: 30px; | |
| 1831 | + justify-content: center; | |
| 1832 | + flex-wrap: wrap; | |
| 1833 | +} | |
| 1834 | + | |
| 1835 | +.custom-button { | |
| 1836 | + display: flex; | |
| 1837 | + align-items: center; | |
| 1838 | + gap: 16px; | |
| 1839 | + border: 3px solid #0d2f5a; | |
| 1840 | + background-color: #0d2f5a; | |
| 1841 | + color: white; | |
| 1842 | + padding: 20px 25px; | |
| 1843 | + border-radius: 50px; | |
| 1844 | + text-decoration: none; | |
| 1845 | + font-weight: bold; | |
| 1846 | + font-size: 18px; | |
| 1847 | + font-family: sans-serif; | |
| 1848 | + min-width: 280px; | |
| 1849 | + justify-content: flex-start; | |
| 1850 | +} | |
| 1851 | + | |
| 1852 | +.custom-button:hover { | |
| 1853 | + background-color:rgba(256, 256, 256, 0); | |
| 1854 | + color: #0d2f5a; | |
| 1855 | +} | |
| 1856 | +.custom-button .icon { | |
| 1857 | + display: flex; | |
| 1858 | + align-items: center; | |
| 1859 | + justify-content: center; | |
| 1860 | +} | |
| 1861 | + | |
| 1862 | +.custom-button svg { | |
| 1863 | + height: 50px; | |
| 1864 | + min-width: 50px; | |
| 1865 | +} | |
| 1866 | + | |
| 1867 | +.custom-button .text { | |
| 1868 | + line-height: 1.3; | |
| 1869 | + text-align: left; | |
| 1870 | + color: #fff; | |
| 1871 | + font-size: 25px; | |
| 1872 | +} | |
| 1873 | +.custom-button:hover .text { | |
| 1874 | + color: #0d2f5a; | |
| 1875 | +} | |
| 1876 | + | |
| 1877 | +.button-row-bckground { | |
| 1878 | + background: linear-gradient( | |
| 1879 | + to bottom, | |
| 1880 | + rgba(230, 159, 67, 0.2) 25%, | |
| 1881 | + rgb(51, 46, 116, 0.2) 100% | |
| 1882 | + ); | |
| 1883 | +} | |
| 1884 | + | |
| 1885 | +.banner { | |
| 1886 | + margin: 0; | |
| 1887 | + background-color: #17355f; | |
| 1888 | +} | |
| 1889 | +.banner-container { | |
| 1890 | + display: flex; | |
| 1891 | + align-items: center; | |
| 1892 | + justify-content: center; | |
| 1893 | + padding: 60px 100px 60px 60px !important; | |
| 1894 | +} | |
| 1895 | +.home-chezNous-section img{ | |
| 1896 | + border-radius:15px; | |
| 1897 | +} | |
| 1898 | +.home-chezNous-section { | |
| 1899 | + position: relative; | |
| 1900 | + text-align: right; | |
| 1901 | + font-weight: bold; | |
| 1902 | + display: inline-block; | |
| 1903 | + margin: 0; | |
| 1904 | + height: auto; | |
| 1905 | + } | |
| 1906 | +.home-chezNous-section .chezNous-btns { | |
| 1907 | + position: absolute; | |
| 1908 | + bottom: 50%; | |
| 1909 | + left: 65%; | |
| 1910 | + width: 100%; | |
| 1911 | + text-align: center; | |
| 1912 | + width: auto; | |
| 1913 | +} | |
| 1914 | +.home-chezNous-section .chezNous-btn { | |
| 1915 | + color: #F67E4A; | |
| 1916 | + background: #fff; | |
| 1917 | + border: 3px solid #fff; | |
| 1918 | + padding: 7px; | |
| 1919 | + font-size: 35px; | |
| 1920 | + border-radius:10px; | |
| 1921 | + font-weight: 900; | |
| 1922 | + box-shadow: -4px 6px 0px 0px #C2653C; | |
| 1923 | +} | |
| 1924 | +.home-chezNous-section .chezNous-btn:hover { | |
| 1925 | + border: 3px solid #fff; | |
| 1926 | + background: #F67E4A; | |
| 1927 | + color: white; | |
| 1928 | +} | |
| 1929 | +.chezNous-btns a { | |
| 1930 | + display: inline-block; | |
| 1931 | + text-decoration: none; | |
| 1932 | +} | |
| 1933 | +.chezNous-link { | |
| 1934 | + margin-top: 20px; | |
| 1935 | + display: inline-block; | |
| 1936 | + color: #fff !important; | |
| 1937 | + font-weight: normal; | |
| 1938 | + font-size: 20px; | |
| 1939 | +} | |
| 1940 | +.chezNous-link:hover { | |
| 1941 | + text-decoration: underline; | |
| 1942 | + font-weight:bold; | |
| 1943 | +} | |
| 1944 | + | |
| 1945 | +.banner-container div:has(.home-chezNous-section) { | |
| 1946 | + text-align: center; | |
| 1947 | +} | |
| 1948 | +.chezNous-autre { | |
| 1949 | + background: white !important; | |
| 1950 | + border-radius:15px; | |
| 1951 | + display: flex; | |
| 1952 | + align-items: center; | |
| 1953 | + margin-left: -60px; | |
| 1954 | +} | |
| 1955 | +.banner-container.vc_row { | |
| 1956 | + display: flex; | |
| 1957 | + align-items: stretch; | |
| 1958 | +} | |
| 1959 | +.vc_col-has-fill>.vc_column-inner, .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_vc_row>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_vc_row_inner>.vc_row>.vc_vc_column_inner>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_vc_column_inner>.vc_column_container>.vc_column-inner, .vc_section.vc_section-has-fill, .vc_section.vc_section-has-fill+.vc_row-full-width+.vc_section, .vc_section.vc_section-has-fill+.vc_section{ | |
| 1960 | + padding-top: 0px; | |
| 1961 | +} | |
| 1962 | + | |
| 1963 | +/*footer*/ | |
| 1964 | +.footer-t { | |
| 1965 | + color:#fff !important; | |
| 1966 | + font-weight: bold !important; | |
| 1967 | + font-size: 30px ; | |
| 1968 | +} | |
| 1969 | +.footer a { | |
| 1970 | + color:#fff !important; | |
| 1971 | +} | |
| 1972 | + | |
| 1973 | +.footer-with-b { | |
| 1974 | + display: flex; | |
| 1975 | + flex-direction: column; | |
| 1976 | + align-items: flex-start; | |
| 1977 | + gap: 0px; | |
| 1978 | +} | |
| 1979 | + | |
| 1980 | +.footer-b { | |
| 1981 | + display: inline-block; | |
| 1982 | + padding: 12px 30px; | |
| 1983 | + color: white !important; | |
| 1984 | + border: 2px solid white; | |
| 1985 | + border-radius: 10px; | |
| 1986 | + text-decoration: none; | |
| 1987 | + font-weight: bold; | |
| 1988 | + background: transparent; | |
| 1989 | + transition: background 0.3s, color 0.3s; | |
| 1990 | + text-align: center; | |
| 1991 | + min-width: 230px; | |
| 1992 | + font-size: 20px; | |
| 1993 | +} | |
| 1994 | +.footer-b:hover { | |
| 1995 | + background: white; | |
| 1996 | + color: #2b546b !important; | |
| 1997 | +} | |
| 1998 | + | |
| 1999 | +.left-section a{ | |
| 2000 | + color: #fff !important; | |
| 2001 | + font-size: 23px; | |
| 2002 | +} | |
| 2003 | +.left-section a:hover{ | |
| 2004 | + color: #0067a5 !important; | |
| 2005 | +} | |
| 2006 | + a.footer-t:hover{ | |
| 2007 | + color: #95F0FE !important; | |
| 2008 | +} | |
| 2009 | +/* home-job card */ | |
| 2010 | +.home-jobs .job-listing-wrapper { | |
| 2011 | + overflow-x: auto; | |
| 2012 | + overflow-y: hidden; | |
| 2013 | + white-space: nowrap; | |
| 2014 | + padding-bottom: 20px; | |
| 2015 | + scrollbar-width: none; | |
| 2016 | +} | |
| 2017 | +.home-jobs .job-listing-wrapper::-webkit-scrollbar { | |
| 2018 | + display: none; /* Chrome, Safari */ | |
| 2019 | +} | |
| 2020 | +.home-jobs .job_listings { | |
| 2021 | + display: flex; | |
| 2022 | + flex-wrap: nowrap; | |
| 2023 | + gap: 20px; | |
| 2024 | + list-style: none; | |
| 2025 | + padding: 0; | |
| 2026 | + margin: 5px; | |
| 2027 | +} | |
| 2028 | +.home-jobs .job-card { | |
| 2029 | + background:#C6C6B845; | |
| 2030 | + border-radius: 10px; | |
| 2031 | + box-shadow: 0 4px 15px rgba(0,0,0,0.05); | |
| 2032 | + padding: 40px 20px; | |
| 2033 | + width: 300px; | |
| 2034 | + min-width: 325px; | |
| 2035 | + min-height: 420px; | |
| 2036 | + white-space: normal; | |
| 2037 | + display: flex; | |
| 2038 | + flex-direction: column; | |
| 2039 | + justify-content: space-between; | |
| 2040 | +} | |
| 2041 | + | |
| 2042 | +.home-jobs .job-card:hover{ | |
| 2043 | + background:#0067a5; | |
| 2044 | +} | |
| 2045 | +.home-jobs .job-listing-link-button{ | |
| 2046 | + background: transparent; | |
| 2047 | + border: 2px solid #7CAFDE !important; | |
| 2048 | + color: #7CAFDE; | |
| 2049 | + text-align: center; | |
| 2050 | + border-radius: 10px; | |
| 2051 | + margin: 0 120px 0 0!important; | |
| 2052 | + padding: 5px!important; | |
| 2053 | + font-size: 19px; | |
| 2054 | +} | |
| 2055 | +.home-jobs .job-card:hover .job-listing-link-button { | |
| 2056 | + background-color: transparent; | |
| 2057 | + color: white; | |
| 2058 | + border-color:#fff !important; | |
| 2059 | +} | |
| 2060 | + | |
| 2061 | + | |
| 2062 | +.home-jobs .job-title h3 { | |
| 2063 | + font-size: 23px; | |
| 2064 | + color: #000; | |
| 2065 | + margin-bottom: 15px; | |
| 2066 | + font-weight: bolder; | |
| 2067 | +} | |
| 2068 | +.home-jobs .job-card:hover .job-title h3{ | |
| 2069 | + color:#fff; | |
| 2070 | +} | |
| 2071 | +.home-jobs .job-type-location span { | |
| 2072 | + display: flex; | |
| 2073 | + align-items: center; | |
| 2074 | + gap: 8px; | |
| 2075 | + color: #000; | |
| 2076 | + font-weight:bolder; | |
| 2077 | + margin-bottom: 8px; | |
| 2078 | + font-size: 20px; | |
| 2079 | + line-height: 18px; | |
| 2080 | + min-height:40px; | |
| 2081 | +} | |
| 2082 | +.home-jobs .job-type-location{ | |
| 2083 | + border-top:1px solid #7cafde; | |
| 2084 | +} | |
| 2085 | +.home-jobs .job-card:hover .job-type-location span{ | |
| 2086 | + color:#fff; | |
| 2087 | +} | |
| 2088 | +.home-jobs .job-type-location span.apply-button{ | |
| 2089 | + min-height:10px; | |
| 2090 | +} | |
| 2091 | +.home-jobs ul.job_listings li.job_listing, .home-jobs ul.job_listings { | |
| 2092 | + border: none !important; | |
| 2093 | +} | |
| 2094 | +ul.job_listings li.job_listing a{ | |
| 2095 | + padding: 0 ; | |
| 2096 | +} | |
| 2097 | +ul.job_listings li.job_listing a:hover{ | |
| 2098 | + background:transparent; | |
| 2099 | +} | |
| 2100 | +.home-jobs .job-type-location i { | |
| 2101 | + color: #000; | |
| 2102 | + display:none; | |
| 2103 | +} | |
| 2104 | +.home-jobs .job-listing-link { | |
| 2105 | + text-decoration: none; | |
| 2106 | + color: inherit; | |
| 2107 | +} | |
| 2108 | +.home-jobs .nav-btn { | |
| 2109 | + background: none; | |
| 2110 | + border:none; | |
| 2111 | + border: none; | |
| 2112 | + padding: 0; | |
| 2113 | + cursor: pointer; | |
| 2114 | + transition: transform 0.2s ease; | |
| 2115 | +} | |
| 2116 | +.home-jobs .nav-btn svg circle { | |
| 2117 | + transition: fill 0.3s ease, stroke 0.3s ease; | |
| 2118 | +} | |
| 2119 | +.home-jobs .nav-btn svg path { | |
| 2120 | + transition: stroke 0.3s ease; | |
| 2121 | +} | |
| 2122 | + | |
| 2123 | +.home-jobs .nav-btn:hover svg path { | |
| 2124 | + stroke: white; | |
| 2125 | +} | |
| 2126 | +.home-jobs .nav-btns { | |
| 2127 | + text-align: right; | |
| 2128 | +} | |
| 2129 | +.toutes-offres{ | |
| 2130 | + text-align: center; | |
| 2131 | + border: 2px solid #2b546b; | |
| 2132 | + color: #2b546b; | |
| 2133 | + padding: 0px 5px; | |
| 2134 | + border-radius: 35px; | |
| 2135 | +} | |
| 2136 | +.toutes-offres:hover{ | |
| 2137 | + background:#2b546b; | |
| 2138 | +} | |
| 2139 | +.toutes-offres a{ | |
| 2140 | + color:#2b546b; | |
| 2141 | + font-weight: bold; | |
| 2142 | + font-size:19px; | |
| 2143 | + line-height: 25px; | |
| 2144 | + display: inline-block; | |
| 2145 | + margin-top:4px; | |
| 2146 | + width:100%; | |
| 2147 | +} | |
| 2148 | +.toutes-offres:hover a{ | |
| 2149 | + color:#fff; | |
| 2150 | +} | |
| 2151 | +.home-jobs .wpb_wrapper:has(.wpb_wrapper .toutes-offres){ | |
| 2152 | + min-height:420px; | |
| 2153 | + white-space: normal; | |
| 2154 | + display: flex; | |
| 2155 | + flex-direction: column; | |
| 2156 | + justify-content: space-between; | |
| 2157 | +} | |
| 2158 | + | |
| 2159 | +div.wpcf7[data-wpcf7-id="4890"] .wpcf7-not-valid:not(input){ | |
| 2160 | + border: 0px; | |
| 2161 | +} | |
| 2162 | +div.wpcf7 .wpcf7-not-valid::before{ | |
| 2163 | + content: "Ce champ est requis.\A\A"; | |
| 2164 | + color: red; | |
| 2165 | + font-weight: bold; | |
| 2166 | + white-space: pre-line; | |
| 2167 | +} | |
| 2168 | + | |
| 2169 | +.wpcf7-form-control.wpcf7-text, | |
| 2170 | +.wpcf7-form-control.wpcf7-email { | |
| 2171 | + width: 100%; | |
| 2172 | + border-radius: 10px; | |
| 2173 | +} | |
| 2174 | + | |
| 2175 | +a[href*="desabonnement"], | |
| 2176 | +a[href*="désabonnement"] { | |
| 2177 | + display: inline-block; | |
| 2178 | + margin-top: 15px; | |
| 2179 | + color: #1e88e5; | |
| 2180 | + font-size: 14px; | |
| 2181 | + text-decoration: underline; | |
| 2182 | +} | |
| 2183 | + | |
| 2184 | +a[href*="desabonnement"]:hover { | |
| 2185 | + text-decoration: none; | |
| 2186 | +} | |
| 2187 | + | |
| 2188 | +@media (min-width: 992px) { | |
| 2189 | + .footer-6 .col-md-4:first-of-type { | |
| 2190 | + width: 45%; | |
| 2191 | + } | |
| 2192 | + .footer-6 .col-md-4:not(:first-of-type) { | |
| 2193 | + width: 27.5%; | |
| 2194 | + } | |
| 2195 | +} | |
| 2196 | + | |
| 2197 | +@media (min-width: 765px) { | |
| 2198 | + .footer-6 .col-md-4:first-of-type { | |
| 2199 | + border-right:2px solid white; | |
| 2200 | + } | |
| 2201 | +} | |
| 2202 | +.conditions-de-travail { | |
| 2203 | + display: flex; | |
| 2204 | + flex-direction: column; | |
| 2205 | + font-size: 16px; | |
| 2206 | + margin-bottom: 1.5rem; | |
| 2207 | +} | |
| 2208 | + | |
| 2209 | +.ct-row { | |
| 2210 | + display: flex; | |
| 2211 | + gap: 20px; | |
| 2212 | +} | |
| 2213 | + | |
| 2214 | +.ct-label { | |
| 2215 | + width: 300px; | |
| 2216 | + font-weight: bold; | |
| 2217 | + color:#000; | |
| 2218 | + font-size:19px; | |
| 2219 | +} | |
| 2220 | + | |
| 2221 | +.ct-value { | |
| 2222 | + font-size:19px; | |
| 2223 | + color: #000000; | |
| 2224 | +} | |
| 2225 | + | |
| 2226 | +.informations-de-base { | |
| 2227 | + display: flex; | |
| 2228 | + flex-wrap: wrap; | |
| 2229 | + gap: 25px; | |
| 2230 | + align-items: center; | |
| 2231 | + margin-bottom: 1.5rem; | |
| 2232 | + background: #16375E10 ; | |
| 2233 | + width: 300%; | |
| 2234 | + margin-left: -100%; | |
| 2235 | + padding-left: 100%; | |
| 2236 | + padding-top: 15px; | |
| 2237 | + padding-bottom: 15px; | |
| 2238 | +} | |
| 2239 | + | |
| 2240 | +.informations-de-base .info-item { | |
| 2241 | + display: flex; | |
| 2242 | + align-items: center; | |
| 2243 | + gap: 10px; | |
| 2244 | +} | |
| 2245 | + | |
| 2246 | +.informations-de-base .icon svg { | |
| 2247 | + display: inline-block; | |
| 2248 | + vertical-align: middle; | |
| 2249 | +} | |
| 2250 | + | |
| 2251 | +.informations-de-base .info-text { | |
| 2252 | + font-size: 16px; | |
| 2253 | + color: #16375e; | |
| 2254 | + padding-top: 12px; | |
| 2255 | +} | |
| 2256 | + | |
| 2257 | +.apply-buttons { | |
| 2258 | + display: flex; | |
| 2259 | + justify-content: space-between; | |
| 2260 | + flex-wrap: wrap; | |
| 2261 | + gap: 0px; | |
| 2262 | + margin-top: 70px; | |
| 2263 | + width: 300%; | |
| 2264 | + margin-left: -100%; | |
| 2265 | + padding: 30px 100% 200px 100%; | |
| 2266 | + margin-bottom:-170px; | |
| 2267 | +} | |
| 2268 | +.apply-buttons-1 h2, | |
| 2269 | +.apply-buttons-2 h2 { | |
| 2270 | + color: #004071; | |
| 2271 | + font-size: 18px; | |
| 2272 | + font-weight: bold; | |
| 2273 | +} | |
| 2274 | +.apply-buttons-2 h2 { | |
| 2275 | + margin-bottom: 27px; | |
| 2276 | +} | |
| 2277 | +.apply-buttons .application_button.button { | |
| 2278 | + background-color: #004071; | |
| 2279 | + color: #fff; | |
| 2280 | + border: 2px solid #004071; | |
| 2281 | + border-radius: 5px; | |
| 2282 | + font-weight: bold; | |
| 2283 | + font-size: 20px; | |
| 2284 | + width:fit-content; | |
| 2285 | + height:min-content; | |
| 2286 | + padding:9px 25px; | |
| 2287 | + box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3); | |
| 2288 | + margin-bottom:10px; | |
| 2289 | +} | |
| 2290 | +.apply-buttons .application_button.button:hover { | |
| 2291 | + background-color: transparent; | |
| 2292 | + color: #004071; | |
| 2293 | +} | |
| 2294 | + | |
| 2295 | +.apply-buttons .apply-buttons-2 a { | |
| 2296 | + background-color: #004071; | |
| 2297 | + color: #fff; | |
| 2298 | + border: 2px solid #004071; | |
| 2299 | + border-radius: 5px; | |
| 2300 | + font-weight: bold; | |
| 2301 | + font-size: 20px; | |
| 2302 | + padding: 5px 15px; | |
| 2303 | + box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3); | |
| 2304 | +} | |
| 2305 | +.apply-buttons .apply-buttons-2 a:hover { | |
| 2306 | + background-color: transparent; | |
| 2307 | + color: #004071; | |
| 2308 | +} | |
| 2309 | +.job-manager-single-alert-link{ | |
| 2310 | + margin-top: -150px; | |
| 2311 | +} | |
| 2312 | +.job-manager-single-alert-link a{ | |
| 2313 | + color: #57b4b0; | |
| 2314 | + font-weight: 600; | |
| 2315 | +} | |
| 2316 | +.job-manager-single-alert-link a:hover{ | |
| 2317 | + color: #F67E4A; | |
| 2318 | +} | |
| 2319 | +.single-job_listing section{ | |
| 2320 | + padding-bottom: 40px !important; | |
| 2321 | +} | |
| 2322 | + | |
| 2323 | +.liste-jobs-tout ul.job_listings{ | |
| 2324 | + border-top: none !important; | |
| 2325 | + padding: 10px 7% 50px ; | |
| 2326 | + border: none !important; | |
| 2327 | + background:#c6c6b830; | |
| 2328 | +} | |
| 2329 | + | |
| 2330 | +.liste-jobs-tout h2{ | |
| 2331 | + width: 300%; | |
| 2332 | + margin-left: -100%; | |
| 2333 | + padding: 40px 100% 20px 100%; | |
| 2334 | + background: #EFF2F4; | |
| 2335 | + margin-bottom: 0px; | |
| 2336 | + margin-top: -60px; | |
| 2337 | + font-size: 35px; | |
| 2338 | +} | |
| 2339 | + | |
| 2340 | +.liste-jobs-tout .job_filters .showing_jobs{ | |
| 2341 | + border-top: none; | |
| 2342 | +} | |
| 2343 | + | |
| 2344 | +.liste-jobs-tout .job-type-location { | |
| 2345 | + display: flex; | |
| 2346 | + flex-wrap: nowrap; | |
| 2347 | + align-items: center; | |
| 2348 | +} | |
| 2349 | +.liste-jobs-tout .job-listing-link-button { | |
| 2350 | + margin-left: auto; | |
| 2351 | + background: transparent; | |
| 2352 | + border: 2px solid #004071 !important; | |
| 2353 | + color: #004071; | |
| 2354 | + border-radius: 5px; | |
| 2355 | + margin-bottom: 20px; | |
| 2356 | + padding: 5px 10px !important; | |
| 2357 | + font-size: 19px; | |
| 2358 | +} | |
| 2359 | + | |
| 2360 | +.liste-jobs-tout .job-listing-link-button:hover, .liste-jobs-tout .job-listing-link-button:active, .liste-jobs-tout .job-listing-link-button:focus{ | |
| 2361 | + background: #004071; | |
| 2362 | + color: #fff; | |
| 2363 | +} | |
| 2364 | +.liste-jobs-tout .job-title h3 { | |
| 2365 | + font-size: 25px; | |
| 2366 | + margin-top: 20px; | |
| 2367 | + color: #004071; | |
| 2368 | + font-weight: bold; | |
| 2369 | + max-width: 55vw; | |
| 2370 | +} | |
| 2371 | + | |
| 2372 | +.liste-jobs-tout ul.job_listings li.job_listing { | |
| 2373 | + padding: 0px 10px 10px 0px ; | |
| 2374 | + border-bottom: 1px solid #16375E20; | |
| 2375 | +} | |
| 2376 | +.liste-jobs-tout .search_jobs{ | |
| 2377 | + width: 300%; | |
| 2378 | + margin-left: -100%; | |
| 2379 | + padding: 30px 107% 30px; | |
| 2380 | + background:#7cafde82 | |
| 2381 | +} | |
| 2382 | +.liste-jobs-tout .job_types{ | |
| 2383 | + margin-top: -50px; | |
| 2384 | + width: 300%; | |
| 2385 | + margin-left: -100%; | |
| 2386 | + padding: 0 107% 0 !important; | |
| 2387 | +} | |
| 2388 | + | |
| 2389 | +.liste-jobs-tout .showing_jobs{ | |
| 2390 | + width: 300%; | |
| 2391 | + margin-left: -100%; | |
| 2392 | + margin-top:10px; | |
| 2393 | + padding: 0 107% 0; | |
| 2394 | +} | |
| 2395 | +.liste-jobs-tout .search_submit input{ | |
| 2396 | + background: #004071 !important; | |
| 2397 | + border: 2px solid #004071; | |
| 2398 | + color: #fff !important; | |
| 2399 | + margin-right: 10px; | |
| 2400 | + border-radius: 5px; | |
| 2401 | + width: auto; | |
| 2402 | + height:auto; | |
| 2403 | + padding:0px 10px !important; | |
| 2404 | + font-size:19px; | |
| 2405 | +} | |
| 2406 | +.liste-jobs-tout .search_submit input:hover{ | |
| 2407 | + background:#fff !important; | |
| 2408 | + color: #004071 !important; | |
| 2409 | +} | |
| 2410 | + | |
| 2411 | +.job_listing-template-default.single-job_listing div.main-container div.container div.col-sm-10.col-md-8.col-sm-offset-1.col-md-offset-2{ | |
| 2412 | + margin-left:0px; | |
| 2413 | + margin-right:0px; | |
| 2414 | + width: auto; | |
| 2415 | +} | |
| 2416 | + | |
| 2417 | +.boxed.boxed--lg.border--round.bg--white:has(.cat-hero-text){ | |
| 2418 | + background: none; | |
| 2419 | + padding-left: 0px; | |
| 2420 | + padding-right: 0px; | |
| 2421 | + padding-bottom: 0px; | |
| 2422 | + margin-top: 5vh; | |
| 2423 | + margin-bottom: 0px; | |
| 2424 | + min-width: 100vw; | |
| 2425 | + min-height: 15vh; | |
| 2426 | +} | |
| 2427 | +.cat-hero-s-text{ | |
| 2428 | + color: #ffffff !important; | |
| 2429 | + font-size: 35px; | |
| 2430 | + line-height:100px; | |
| 2431 | +} | |
| 2432 | +.cat-hero-b-text{ | |
| 2433 | + color: #ffffff !important; | |
| 2434 | + font-size: 50px; | |
| 2435 | + line-height: 50px; | |
| 2436 | + font-weight: bold; | |
| 2437 | +} | |
| 2438 | +.col-md-10.col-md-offset-1.col-sm-12:has(.cat-hero-text){ | |
| 2439 | + margin-left: 0px; | |
| 2440 | +} | |
| 2441 | + | |
| 2442 | +footer::after { | |
| 2443 | + content: "© Gouvernement du Québec - 2025"; | |
| 2444 | + display: block; | |
| 2445 | + text-align: center; | |
| 2446 | + background-color: #fff; | |
| 2447 | + background-image: url('https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/06/logo_chum.png'); | |
| 2448 | + background-repeat: no-repeat; | |
| 2449 | + background-position: center 20px; | |
| 2450 | + background-size: 95px auto; | |
| 2451 | + padding-top: 100px; | |
| 2452 | + padding-bottom: 10px; | |
| 2453 | + font-size: 14px; | |
| 2454 | + font-weight: 500; | |
| 2455 | + margin-top: 30px; | |
| 2456 | + margin-bottom:-25px; | |
| 2457 | + padding-left: 40px; | |
| 2458 | + padding-right: 40px; | |
| 2459 | + white-space: pre-line; | |
| 2460 | + position: relative; | |
| 2461 | +} | |
| 2462 | + | |
| 2463 | +.job-manager-single-alert-link{ | |
| 2464 | + display: none; | |
| 2465 | +} | |
| 2466 | + | |
| 2467 | +@media only screen and (max-width: 600px) { | |
| 2468 | + .liste-jobs-tout h2{ | |
| 2469 | + margin-top: -160px; | |
| 2470 | + } | |
| 2471 | + .single-job_listing .a2a_kit::before { | |
| 2472 | + content: 'Partager\A' !important; | |
| 2473 | + white-space:pre-line !important; | |
| 2474 | + } | |
| 2475 | + .single-job_listing .a2a_kit{ | |
| 2476 | + display: block !important; | |
| 2477 | + } | |
| 2478 | + .apply-buttons .application_button.button{ | |
| 2479 | + min-width:175px; | |
| 2480 | + } | |
| 2481 | + .conditions-de-travail { | |
| 2482 | + display: block; | |
| 2483 | + } | |
| 2484 | + .ct-row { | |
| 2485 | + display: block; | |
| 2486 | + } | |
| 2487 | + .ct-value::before { | |
| 2488 | + content:'\A'; | |
| 2489 | + white-space:pre-line; | |
| 2490 | + } | |
| 2491 | + .job_description { | |
| 2492 | + font-size: 16px; | |
| 2493 | + } | |
| 2494 | + .single_job_listing .job_description h2 { | |
| 2495 | + padding-top: 10px; | |
| 2496 | + } | |
| 2497 | + .informations-de-base { | |
| 2498 | + display:block; | |
| 2499 | + } | |
| 2500 | + .article__title.text-center h1 { | |
| 2501 | + font-size: 17px; | |
| 2502 | + padding-bottom:170px; | |
| 2503 | + height:36vh; | |
| 2504 | + } | |
| 2505 | + .liste-jobs-tout .job-listing-link span { | |
| 2506 | + display:block; | |
| 2507 | + margin: 10px 0; | |
| 2508 | + padding:0px; | |
| 2509 | + font-size:16px !important; | |
| 2510 | + line-height:20px; | |
| 2511 | + } | |
| 2512 | + .liste-jobs-tout ul.job_listings li.job_listing a.job-listing-link-button{ | |
| 2513 | + margin-top:5px; | |
| 2514 | + margin-bottom:2px; | |
| 2515 | + text-align: center; | |
| 2516 | + } | |
| 2517 | + .liste-jobs-tout .job-type-location{ | |
| 2518 | + display: block; | |
| 2519 | + } | |
| 2520 | + .liste-jobs-tout .job-listing-link span { | |
| 2521 | + display: flex; | |
| 2522 | + align-items: flex-start; | |
| 2523 | + gap: 6px; | |
| 2524 | + } | |
| 2525 | + .liste-jobs-tout .job-type-location .job-type{ | |
| 2526 | + margin-right:0px; | |
| 2527 | + } | |
| 2528 | + .liste-jobs-tout ul.job_listings li.job_listing a{ | |
| 2529 | + min-width: 100%; | |
| 2530 | + } | |
| 2531 | + .liste-jobs-tout .job-title h3{ | |
| 2532 | + max-width: 100% !important; | |
| 2533 | + font-size:18px; | |
| 2534 | + } | |
| 2535 | + .liste-jobs-tout .job_types { | |
| 2536 | + margin-top: 0px !important; | |
| 2537 | + background-color:#7cafde82 !important; | |
| 2538 | + } | |
| 2539 | + .image-container .text span { | |
| 2540 | + font-size: 19px; | |
| 2541 | + } | |
| 2542 | + .image-container .text span | |
| 2543 | + .bar .logo { | |
| 2544 | + max-height: 90px; | |
| 2545 | + margin-top: 0.5px; | |
| 2546 | + } | |
| 2547 | + .bar__module a.btn--demo { | |
| 2548 | + width:100%; | |
| 2549 | + } | |
| 2550 | + .hero-text span:nth-child(2) { | |
| 2551 | + line-height: 40px !important; | |
| 2552 | + } | |
| 2553 | + .home-jobs .wpb_wrapper:has(.wpb_wrapper .toutes-offres) { | |
| 2554 | + min-height:170px; | |
| 2555 | + } | |
| 2556 | + .home-jobs .job-title h3 { | |
| 2557 | + font-size: 18px; | |
| 2558 | + } | |
| 2559 | + .home-jobs .job-card { | |
| 2560 | + width: 100px; | |
| 2561 | + min-width: 275px; | |
| 2562 | + min-height: 400px; | |
| 2563 | + } | |
| 2564 | + .home-jobs .job-listing-link-button { | |
| 2565 | + width: 100%; | |
| 2566 | + margin: 0px !important; | |
| 2567 | + padding: 0; | |
| 2568 | + } | |
| 2569 | + .home-jobs .job-type-location span { | |
| 2570 | + font-size: 16px; | |
| 2571 | + } | |
| 2572 | + .home-jobs .job_listings { | |
| 2573 | + gap: 7px; | |
| 2574 | + } | |
| 2575 | + .home-jobs { | |
| 2576 | + padding:0; | |
| 2577 | + } | |
| 2578 | + .home-jobs .wpb_column:has(.job-listing-wrapper){ | |
| 2579 | + margin-left:-30px; | |
| 2580 | + width: 120%; | |
| 2581 | + } | |
| 2582 | + .banner-container { | |
| 2583 | + padding: 10px 0 !important; | |
| 2584 | + } | |
| 2585 | + .home-chezNous-section .chezNous-btns { | |
| 2586 | + bottom: 30%; | |
| 2587 | + left: 57%; | |
| 2588 | + } | |
| 2589 | + .home-chezNous-section .chezNous-btn { | |
| 2590 | + padding: 0px 2px; | |
| 2591 | + font-size: 16px; | |
| 2592 | + font-weight: 900; | |
| 2593 | + } | |
| 2594 | + .temoignage-section{ | |
| 2595 | + margin-left:-30px; | |
| 2596 | + margin-right:-30px; | |
| 2597 | + margin-top:-10px; | |
| 2598 | + } | |
| 2599 | + h2{ | |
| 2600 | + font-size: 22px; | |
| 2601 | + } | |
| 2602 | + .temoignage-section ul li{ | |
| 2603 | + font-size: 16px; | |
| 2604 | + } | |
| 2605 | + .location-n-cat .location-n-cat:has(.search_keywords) { | |
| 2606 | + display: inline; | |
| 2607 | + } | |
| 2608 | + ul.job_types li label { | |
| 2609 | + display: flex; | |
| 2610 | + align-items: flex-start; | |
| 2611 | + } | |
| 2612 | + ul.job_types li input[type="checkbox"] { | |
| 2613 | + margin-top: 0.2em; | |
| 2614 | + margin-right: 0.5em; | |
| 2615 | + flex-shrink: 0; | |
| 2616 | + } | |
| 2617 | + ul.job_types li label::after { | |
| 2618 | + content: ""; | |
| 2619 | + display: block; | |
| 2620 | + } | |
| 2621 | + .liste-jobs-tout .job_filters .showing_jobs span{ | |
| 2622 | + display: inline-block; | |
| 2623 | + line-height: 20px; | |
| 2624 | + padding: 10px 0 1-0px 0; | |
| 2625 | + } | |
| 2626 | + .cat-hero-s-text { | |
| 2627 | + font-size: 20px; | |
| 2628 | + line-height:0; | |
| 2629 | + } | |
| 2630 | + .cat-hero-b-text { | |
| 2631 | + font-size: 25px; | |
| 2632 | + line-height: 30px; | |
| 2633 | + } | |
| 2634 | + .boxed.boxed--lg.border--round.bg--white:has(.cat-hero-text) { | |
| 2635 | + margin-top: 0; | |
| 2636 | + margin-bottom: 20px; | |
| 2637 | + min-width: 50vw; | |
| 2638 | + } | |
| 2639 | + .liste-jobs-tout h2 { | |
| 2640 | + font-size: 25px; | |
| 2641 | + padding-bottom:0px; | |
| 2642 | + } | |
| 2643 | + | |
| 2644 | + .wpcf7-checkbox .wpcf7-list-item { | |
| 2645 | + width: 100%; | |
| 2646 | + } | |
| 2647 | + .wpcf7-form-control.wpcf7-text, .wpcf7-form-control.wpcf7-email { | |
| 2648 | + width: 100%; | |
| 2649 | + } | |
| 2650 | + h1, .h1 { | |
| 2651 | + font-size: 2em; | |
| 2652 | + line-height: 1em; | |
| 2653 | + } | |
| 2654 | +} | |
| 2655 | + | |
| 2656 | +.single-job_listing .a2a_kit svg path { | |
| 2657 | + fill: #004071 !important; | |
| 2658 | +} | |
| 2659 | +.single-job_listing .a2a_kit .a2a_svg { | |
| 2660 | + background: none !important; | |
| 2661 | +} | |
| 2662 | +.single-job_listing .is-partagez { | |
| 2663 | + display: none; | |
| 2664 | +} | |
| 2665 | +.single-job_listing .a2a_kit::before { | |
| 2666 | + content: "Partager "; | |
| 2667 | + margin-right: 8px; | |
| 2668 | + font-size:18px; | |
| 2669 | + font-weight: bold; | |
| 2670 | + color: #8A898A; | |
| 2671 | +} | |
| 2672 | +.single-job_listing .a2a_kit { | |
| 2673 | + display: flex; | |
| 2674 | + justify-content: flex-end; | |
| 2675 | + align-items: center; | |
| 2676 | + margin-right: 100px; | |
| 2677 | +} | |
| 2678 | +.single-job_listing .a2a_button_twitter { | |
| 2679 | + display: none !important; | |
| 2680 | +} | |
| 2681 | +.statut-emploi-TP { | |
| 2682 | + display: none !important; | |
| 2683 | +} | |
| 2684 | +.col-md-11.col-sm-12.text-right.text-left-xs.text-left-sm { | |
| 2685 | + margin-top: -15px !important; | |
| 2686 | + margin-bottom:15px; | |
| 2687 | +} | |
| 2688 | + | |
| 2689 | +.job-info.job-card a:active, .job-info.job-card a:visited, .job-info.job-card a:focus{ | |
| 2690 | + background: transparent !important; | |
| 2691 | +} | |
| 2692 | + | |
| 2693 | +@media screen and (min-width: 600px) and (max-width: 800px) { | |
| 2694 | + .home-jobs .wpb_wrapper:has(.wpb_wrapper .toutes-offres) { | |
| 2695 | + min-height: 200px; | |
| 2696 | + } | |
| 2697 | + | |
| 2698 | + .toutes-offres { | |
| 2699 | + width: 50%; | |
| 2700 | + } | |
| 2701 | + | |
| 2702 | + .toutes-offres a { | |
| 2703 | + width: 50%; | |
| 2704 | + } | |
| 2705 | + .home-chezNous-section .chezNous-btns { | |
| 2706 | + bottom: 45%; | |
| 2707 | + left: 62%; | |
| 2708 | + } | |
| 2709 | + .home-chezNous-section .chezNous-btn { | |
| 2710 | + padding: 0px 2px; | |
| 2711 | + font-size: 25px; | |
| 2712 | + font-weight: 900; | |
| 2713 | + } | |
| 2714 | + .liste-jobs-tout .job_types { | |
| 2715 | + margin-top: 0px !important; | |
| 2716 | + background-color:#7cafde82 !important; | |
| 2717 | + } | |
| 2718 | + .liste-jobs-tout .job-listing-link span { | |
| 2719 | + display: block; | |
| 2720 | + margin: 10px 0; | |
| 2721 | + padding:0px; | |
| 2722 | + font-size:16px !important; | |
| 2723 | + line-height:20px; | |
| 2724 | + } | |
| 2725 | + .liste-jobs-tout ul.job_listings li.job_listing a.job-listing-link-button{ | |
| 2726 | + margin-top:5px; | |
| 2727 | + margin-bottom:2px; | |
| 2728 | + text-align: center; | |
| 2729 | + } | |
| 2730 | + .liste-jobs-tout .job-type-location{ | |
| 2731 | + display: block; | |
| 2732 | + } | |
| 2733 | + .liste-jobs-tout .job-listing-link span { | |
| 2734 | + display: flex; | |
| 2735 | + align-items: flex-start; | |
| 2736 | + gap: 6px; | |
| 2737 | + } | |
| 2738 | + .liste-jobs-tout .job-type-location .job-type{ | |
| 2739 | + margin-right:0px; | |
| 2740 | + } | |
| 2741 | + .liste-jobs-tout ul.job_listings li.job_listing a{ | |
| 2742 | + min-width: 100%; | |
| 2743 | + } | |
| 2744 | + .liste-jobs-tout .job-title h3{ | |
| 2745 | + max-width: 100% !important; | |
| 2746 | + font-size:25px; | |
| 2747 | + } | |
| 2748 | + .liste-jobs-tout .showing_jobs { | |
| 2749 | + margin-top:0px; | |
| 2750 | + } | |
| 2751 | + .wpcf7-checkbox .wpcf7-list-item { | |
| 2752 | + width: 50%; | |
| 2753 | + } | |
| 2754 | + .wpcf7-form-control.wpcf7-text, .wpcf7-form-control.wpcf7-email { | |
| 2755 | + width: 100%; | |
| 2756 | + } | |
| 2757 | +} | |
| 2758 | + | |
| 2759 | +@media (max-width: 768px) { | |
| 2760 | + .cat-hero-text{ | |
| 2761 | + padding-top:40vh !important; | |
| 2762 | + } | |
| 2763 | + .cat-hero-text{ | |
| 2764 | + margin-left: -30px !important; | |
| 2765 | + padding-top: 50px; | |
| 2766 | + } | |
| 2767 | + .right-section { | |
| 2768 | + margin:0px !important; | |
| 2769 | + } | |
| 2770 | + .col-sm-6:first-of-type{ | |
| 2771 | + border-left:0px !important; | |
| 2772 | + } | |
| 2773 | +} | |
| 2774 | + | |
| 2775 | +.elementor hr{ | |
| 2776 | + margin:25px 0px 10px 0px!important; | |
| 2777 | +} | |
| 2778 | +footer:not(.bg--primary):not(.bg--dark) a{ | |
| 2779 | + color:#fff; | |
| 2780 | +} | |
| 2781 | + | |
| 2782 | +.job-list { | |
| 2783 | + list-style: none; | |
| 2784 | + padding: 0; | |
| 2785 | + font-size: 30px; | |
| 2786 | + font-weight: 300; | |
| 2787 | + line-height: 1.6; | |
| 2788 | + } | |
| 2789 | +.right-section { | |
| 2790 | + display: flex; | |
| 2791 | + flex-direction: column; | |
| 2792 | + justify-content: flex-start; | |
| 2793 | + gap: 35px; | |
| 2794 | + margin-left:50px; | |
| 2795 | +} | |
| 2796 | +@media (max-width: 900px) { | |
| 2797 | + .container { | |
| 2798 | + flex-direction: column; | |
| 2799 | + gap: 40px; | |
| 2800 | + } | |
| 2801 | + .left-section, .right-section { | |
| 2802 | + max-width: 100%; | |
| 2803 | + } | |
| 2804 | +} | |
| 2805 | + | |
| 2806 | +.menu-horizontal > .dropdown > .dropdown__trigger::after { | |
| 2807 | + margin-left: 4px; | |
| 2808 | + content: ""; | |
| 2809 | + display: inline-block; | |
| 2810 | + width: 20px; | |
| 2811 | + height: 20px; | |
| 2812 | + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230066b3'%3E%3Cpath d='M12 13.172l4.95-4.95 1.414 1.414L12 16 5.636 9.636l1.414-1.414L12 13.172z'/%3E%3Cpath d='M12 19.172l4.95-4.95 1.414 1.414L12 22 5.636 15.636l1.414-1.414L12 19.172z'/%3E%3C/svg%3E"); | |
| 2813 | + background-size: contain; | |
| 2814 | + background-repeat: no-repeat; | |
| 2815 | +} | |
| 2816 | +.container{ | |
| 2817 | + width:90vw; | |
| 2818 | + margin-left:5vw; | |
| 2819 | +} | |
| 2820 | +.col-sm-6:first-of-type{ | |
| 2821 | + border-right:1px solid white; | |
| 2822 | + | |
| 2823 | +} | |
| 2824 | +@media (min-width: 900px){ | |
| 2825 | + .col-sm-6:first-of-type{ | |
| 2826 | + width:60%; | |
| 2827 | + padding-bottom:100px; | |
| 2828 | + } | |
| 2829 | +} | |
| 2830 | +@media (min-width: 900px) { | |
| 2831 | + .col-sm-6 { | |
| 2832 | + width:40%; | |
| 2833 | + } | |
| 2834 | +} | |
| 2835 | + | |
| 2836 | +.left-section .link a { | |
| 2837 | + line-height: 1.2em; | |
| 2838 | + display: inline-block; | |
| 2839 | +} | |
| 2840 | +.footer-s .link{ | |
| 2841 | + font-size: 20px ; | |
| 2842 | +} | |
| 2843 | +.left-section { | |
| 2844 | + line-height: 2.2em; | |
| 2845 | + display: inline-block; | |
| 2846 | +} | |
| 2847 | + | |
| 2848 | + | |
| 2849 | +.nav-btn { | |
| 2850 | + border: none; | |
| 2851 | +} | |
| 2852 | +@media (max-width: 800px){ | |
| 2853 | + .left-section a { | |
| 2854 | + font-size:15px; | |
| 2855 | + } | |
| 2856 | + .footer-s .link{ | |
| 2857 | + font-size: 15px ; | |
| 2858 | + } | |
| 2859 | + .right-section { | |
| 2860 | + gap:0;} | |
| 2861 | + | |
| 2862 | + .footer-t { | |
| 2863 | + font-size:20px ; | |
| 2864 | + white-space:nowrap; | |
| 2865 | + } | |
| 2866 | + .col-sm-6:first-of-type{ | |
| 2867 | + border:none; | |
| 2868 | + } | |
| 2869 | +} | |
| 2870 | + | |
| 2871 | +@media (max-width: 767px){ | |
| 2872 | +.col-sm-6:first-of-type{ | |
| 2873 | + border:none; | |
| 2874 | + } | |
| 2875 | +} | |
| 2876 | + | |
| 2877 | +@media screen and (min-width: 1024px) and (max-width: 1700px) { | |
| 2878 | + .slider{ | |
| 2879 | + width:500px; | |
| 2880 | + height:400px; | |
| 2881 | + } | |
| 2882 | +} | |
| 2883 | +@media (min-width: 600px) and (max-width: 1300px) { | |
| 2884 | + .article__title.text-center h1 { | |
| 2885 | + padding-bottom: 240px; | |
| 2886 | + font-size: 30px; | |
| 2887 | + } | |
| 2888 | +} | |
| 2889 | +</style> | |
| 2890 | + <!-- Fonts Plugin CSS - https://fontsplugin.com/ --> | |
| 2891 | + <style> | |
| 2892 | + /* Cached: August 19, 2026 at 1:23am */ | |
| 2893 | +/* cyrillic-ext */ | |
| 2894 | +@font-face { | |
| 2895 | + font-family: 'Montserrat'; | |
| 2896 | + font-style: italic; | |
| 2897 | + font-weight: 100; | |
| 2898 | + font-display: swap; | |
| 2899 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2900 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 2901 | +} | |
| 2902 | +/* cyrillic */ | |
| 2903 | +@font-face { | |
| 2904 | + font-family: 'Montserrat'; | |
| 2905 | + font-style: italic; | |
| 2906 | + font-weight: 100; | |
| 2907 | + font-display: swap; | |
| 2908 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2909 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 2910 | +} | |
| 2911 | +/* vietnamese */ | |
| 2912 | +@font-face { | |
| 2913 | + font-family: 'Montserrat'; | |
| 2914 | + font-style: italic; | |
| 2915 | + font-weight: 100; | |
| 2916 | + font-display: swap; | |
| 2917 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2918 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 2919 | +} | |
| 2920 | +/* latin-ext */ | |
| 2921 | +@font-face { | |
| 2922 | + font-family: 'Montserrat'; | |
| 2923 | + font-style: italic; | |
| 2924 | + font-weight: 100; | |
| 2925 | + font-display: swap; | |
| 2926 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2927 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 2928 | +} | |
| 2929 | +/* latin */ | |
| 2930 | +@font-face { | |
| 2931 | + font-family: 'Montserrat'; | |
| 2932 | + font-style: italic; | |
| 2933 | + font-weight: 100; | |
| 2934 | + font-display: swap; | |
| 2935 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 2936 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 2937 | +} | |
| 2938 | +/* cyrillic-ext */ | |
| 2939 | +@font-face { | |
| 2940 | + font-family: 'Montserrat'; | |
| 2941 | + font-style: italic; | |
| 2942 | + font-weight: 200; | |
| 2943 | + font-display: swap; | |
| 2944 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2945 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 2946 | +} | |
| 2947 | +/* cyrillic */ | |
| 2948 | +@font-face { | |
| 2949 | + font-family: 'Montserrat'; | |
| 2950 | + font-style: italic; | |
| 2951 | + font-weight: 200; | |
| 2952 | + font-display: swap; | |
| 2953 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2954 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 2955 | +} | |
| 2956 | +/* vietnamese */ | |
| 2957 | +@font-face { | |
| 2958 | + font-family: 'Montserrat'; | |
| 2959 | + font-style: italic; | |
| 2960 | + font-weight: 200; | |
| 2961 | + font-display: swap; | |
| 2962 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2963 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 2964 | +} | |
| 2965 | +/* latin-ext */ | |
| 2966 | +@font-face { | |
| 2967 | + font-family: 'Montserrat'; | |
| 2968 | + font-style: italic; | |
| 2969 | + font-weight: 200; | |
| 2970 | + font-display: swap; | |
| 2971 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2972 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 2973 | +} | |
| 2974 | +/* latin */ | |
| 2975 | +@font-face { | |
| 2976 | + font-family: 'Montserrat'; | |
| 2977 | + font-style: italic; | |
| 2978 | + font-weight: 200; | |
| 2979 | + font-display: swap; | |
| 2980 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 2981 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 2982 | +} | |
| 2983 | +/* cyrillic-ext */ | |
| 2984 | +@font-face { | |
| 2985 | + font-family: 'Montserrat'; | |
| 2986 | + font-style: italic; | |
| 2987 | + font-weight: 300; | |
| 2988 | + font-display: swap; | |
| 2989 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2990 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 2991 | +} | |
| 2992 | +/* cyrillic */ | |
| 2993 | +@font-face { | |
| 2994 | + font-family: 'Montserrat'; | |
| 2995 | + font-style: italic; | |
| 2996 | + font-weight: 300; | |
| 2997 | + font-display: swap; | |
| 2998 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2999 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3000 | +} | |
| 3001 | +/* vietnamese */ | |
| 3002 | +@font-face { | |
| 3003 | + font-family: 'Montserrat'; | |
| 3004 | + font-style: italic; | |
| 3005 | + font-weight: 300; | |
| 3006 | + font-display: swap; | |
| 3007 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3008 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3009 | +} | |
| 3010 | +/* latin-ext */ | |
| 3011 | +@font-face { | |
| 3012 | + font-family: 'Montserrat'; | |
| 3013 | + font-style: italic; | |
| 3014 | + font-weight: 300; | |
| 3015 | + font-display: swap; | |
| 3016 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3017 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3018 | +} | |
| 3019 | +/* latin */ | |
| 3020 | +@font-face { | |
| 3021 | + font-family: 'Montserrat'; | |
| 3022 | + font-style: italic; | |
| 3023 | + font-weight: 300; | |
| 3024 | + font-display: swap; | |
| 3025 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3026 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3027 | +} | |
| 3028 | +/* cyrillic-ext */ | |
| 3029 | +@font-face { | |
| 3030 | + font-family: 'Montserrat'; | |
| 3031 | + font-style: italic; | |
| 3032 | + font-weight: 400; | |
| 3033 | + font-display: swap; | |
| 3034 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3035 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3036 | +} | |
| 3037 | +/* cyrillic */ | |
| 3038 | +@font-face { | |
| 3039 | + font-family: 'Montserrat'; | |
| 3040 | + font-style: italic; | |
| 3041 | + font-weight: 400; | |
| 3042 | + font-display: swap; | |
| 3043 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3044 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3045 | +} | |
| 3046 | +/* vietnamese */ | |
| 3047 | +@font-face { | |
| 3048 | + font-family: 'Montserrat'; | |
| 3049 | + font-style: italic; | |
| 3050 | + font-weight: 400; | |
| 3051 | + font-display: swap; | |
| 3052 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3053 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3054 | +} | |
| 3055 | +/* latin-ext */ | |
| 3056 | +@font-face { | |
| 3057 | + font-family: 'Montserrat'; | |
| 3058 | + font-style: italic; | |
| 3059 | + font-weight: 400; | |
| 3060 | + font-display: swap; | |
| 3061 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3062 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3063 | +} | |
| 3064 | +/* latin */ | |
| 3065 | +@font-face { | |
| 3066 | + font-family: 'Montserrat'; | |
| 3067 | + font-style: italic; | |
| 3068 | + font-weight: 400; | |
| 3069 | + font-display: swap; | |
| 3070 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3071 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3072 | +} | |
| 3073 | +/* cyrillic-ext */ | |
| 3074 | +@font-face { | |
| 3075 | + font-family: 'Montserrat'; | |
| 3076 | + font-style: italic; | |
| 3077 | + font-weight: 500; | |
| 3078 | + font-display: swap; | |
| 3079 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3080 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3081 | +} | |
| 3082 | +/* cyrillic */ | |
| 3083 | +@font-face { | |
| 3084 | + font-family: 'Montserrat'; | |
| 3085 | + font-style: italic; | |
| 3086 | + font-weight: 500; | |
| 3087 | + font-display: swap; | |
| 3088 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3089 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3090 | +} | |
| 3091 | +/* vietnamese */ | |
| 3092 | +@font-face { | |
| 3093 | + font-family: 'Montserrat'; | |
| 3094 | + font-style: italic; | |
| 3095 | + font-weight: 500; | |
| 3096 | + font-display: swap; | |
| 3097 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3098 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3099 | +} | |
| 3100 | +/* latin-ext */ | |
| 3101 | +@font-face { | |
| 3102 | + font-family: 'Montserrat'; | |
| 3103 | + font-style: italic; | |
| 3104 | + font-weight: 500; | |
| 3105 | + font-display: swap; | |
| 3106 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3107 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3108 | +} | |
| 3109 | +/* latin */ | |
| 3110 | +@font-face { | |
| 3111 | + font-family: 'Montserrat'; | |
| 3112 | + font-style: italic; | |
| 3113 | + font-weight: 500; | |
| 3114 | + font-display: swap; | |
| 3115 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3116 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3117 | +} | |
| 3118 | +/* cyrillic-ext */ | |
| 3119 | +@font-face { | |
| 3120 | + font-family: 'Montserrat'; | |
| 3121 | + font-style: italic; | |
| 3122 | + font-weight: 600; | |
| 3123 | + font-display: swap; | |
| 3124 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3125 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3126 | +} | |
| 3127 | +/* cyrillic */ | |
| 3128 | +@font-face { | |
| 3129 | + font-family: 'Montserrat'; | |
| 3130 | + font-style: italic; | |
| 3131 | + font-weight: 600; | |
| 3132 | + font-display: swap; | |
| 3133 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3134 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3135 | +} | |
| 3136 | +/* vietnamese */ | |
| 3137 | +@font-face { | |
| 3138 | + font-family: 'Montserrat'; | |
| 3139 | + font-style: italic; | |
| 3140 | + font-weight: 600; | |
| 3141 | + font-display: swap; | |
| 3142 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3143 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3144 | +} | |
| 3145 | +/* latin-ext */ | |
| 3146 | +@font-face { | |
| 3147 | + font-family: 'Montserrat'; | |
| 3148 | + font-style: italic; | |
| 3149 | + font-weight: 600; | |
| 3150 | + font-display: swap; | |
| 3151 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3152 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3153 | +} | |
| 3154 | +/* latin */ | |
| 3155 | +@font-face { | |
| 3156 | + font-family: 'Montserrat'; | |
| 3157 | + font-style: italic; | |
| 3158 | + font-weight: 600; | |
| 3159 | + font-display: swap; | |
| 3160 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3161 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3162 | +} | |
| 3163 | +/* cyrillic-ext */ | |
| 3164 | +@font-face { | |
| 3165 | + font-family: 'Montserrat'; | |
| 3166 | + font-style: italic; | |
| 3167 | + font-weight: 700; | |
| 3168 | + font-display: swap; | |
| 3169 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3170 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3171 | +} | |
| 3172 | +/* cyrillic */ | |
| 3173 | +@font-face { | |
| 3174 | + font-family: 'Montserrat'; | |
| 3175 | + font-style: italic; | |
| 3176 | + font-weight: 700; | |
| 3177 | + font-display: swap; | |
| 3178 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3179 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3180 | +} | |
| 3181 | +/* vietnamese */ | |
| 3182 | +@font-face { | |
| 3183 | + font-family: 'Montserrat'; | |
| 3184 | + font-style: italic; | |
| 3185 | + font-weight: 700; | |
| 3186 | + font-display: swap; | |
| 3187 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3188 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3189 | +} | |
| 3190 | +/* latin-ext */ | |
| 3191 | +@font-face { | |
| 3192 | + font-family: 'Montserrat'; | |
| 3193 | + font-style: italic; | |
| 3194 | + font-weight: 700; | |
| 3195 | + font-display: swap; | |
| 3196 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3197 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3198 | +} | |
| 3199 | +/* latin */ | |
| 3200 | +@font-face { | |
| 3201 | + font-family: 'Montserrat'; | |
| 3202 | + font-style: italic; | |
| 3203 | + font-weight: 700; | |
| 3204 | + font-display: swap; | |
| 3205 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3206 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3207 | +} | |
| 3208 | +/* cyrillic-ext */ | |
| 3209 | +@font-face { | |
| 3210 | + font-family: 'Montserrat'; | |
| 3211 | + font-style: italic; | |
| 3212 | + font-weight: 800; | |
| 3213 | + font-display: swap; | |
| 3214 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3215 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3216 | +} | |
| 3217 | +/* cyrillic */ | |
| 3218 | +@font-face { | |
| 3219 | + font-family: 'Montserrat'; | |
| 3220 | + font-style: italic; | |
| 3221 | + font-weight: 800; | |
| 3222 | + font-display: swap; | |
| 3223 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3224 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3225 | +} | |
| 3226 | +/* vietnamese */ | |
| 3227 | +@font-face { | |
| 3228 | + font-family: 'Montserrat'; | |
| 3229 | + font-style: italic; | |
| 3230 | + font-weight: 800; | |
| 3231 | + font-display: swap; | |
| 3232 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3233 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3234 | +} | |
| 3235 | +/* latin-ext */ | |
| 3236 | +@font-face { | |
| 3237 | + font-family: 'Montserrat'; | |
| 3238 | + font-style: italic; | |
| 3239 | + font-weight: 800; | |
| 3240 | + font-display: swap; | |
| 3241 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3242 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3243 | +} | |
| 3244 | +/* latin */ | |
| 3245 | +@font-face { | |
| 3246 | + font-family: 'Montserrat'; | |
| 3247 | + font-style: italic; | |
| 3248 | + font-weight: 800; | |
| 3249 | + font-display: swap; | |
| 3250 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3251 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3252 | +} | |
| 3253 | +/* cyrillic-ext */ | |
| 3254 | +@font-face { | |
| 3255 | + font-family: 'Montserrat'; | |
| 3256 | + font-style: italic; | |
| 3257 | + font-weight: 900; | |
| 3258 | + font-display: swap; | |
| 3259 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3260 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3261 | +} | |
| 3262 | +/* cyrillic */ | |
| 3263 | +@font-face { | |
| 3264 | + font-family: 'Montserrat'; | |
| 3265 | + font-style: italic; | |
| 3266 | + font-weight: 900; | |
| 3267 | + font-display: swap; | |
| 3268 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3269 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3270 | +} | |
| 3271 | +/* vietnamese */ | |
| 3272 | +@font-face { | |
| 3273 | + font-family: 'Montserrat'; | |
| 3274 | + font-style: italic; | |
| 3275 | + font-weight: 900; | |
| 3276 | + font-display: swap; | |
| 3277 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3278 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3279 | +} | |
| 3280 | +/* latin-ext */ | |
| 3281 | +@font-face { | |
| 3282 | + font-family: 'Montserrat'; | |
| 3283 | + font-style: italic; | |
| 3284 | + font-weight: 900; | |
| 3285 | + font-display: swap; | |
| 3286 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3287 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3288 | +} | |
| 3289 | +/* latin */ | |
| 3290 | +@font-face { | |
| 3291 | + font-family: 'Montserrat'; | |
| 3292 | + font-style: italic; | |
| 3293 | + font-weight: 900; | |
| 3294 | + font-display: swap; | |
| 3295 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3296 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3297 | +} | |
| 3298 | +/* cyrillic-ext */ | |
| 3299 | +@font-face { | |
| 3300 | + font-family: 'Montserrat'; | |
| 3301 | + font-style: normal; | |
| 3302 | + font-weight: 100; | |
| 3303 | + font-display: swap; | |
| 3304 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3305 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3306 | +} | |
| 3307 | +/* cyrillic */ | |
| 3308 | +@font-face { | |
| 3309 | + font-family: 'Montserrat'; | |
| 3310 | + font-style: normal; | |
| 3311 | + font-weight: 100; | |
| 3312 | + font-display: swap; | |
| 3313 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3314 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3315 | +} | |
| 3316 | +/* vietnamese */ | |
| 3317 | +@font-face { | |
| 3318 | + font-family: 'Montserrat'; | |
| 3319 | + font-style: normal; | |
| 3320 | + font-weight: 100; | |
| 3321 | + font-display: swap; | |
| 3322 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3323 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3324 | +} | |
| 3325 | +/* latin-ext */ | |
| 3326 | +@font-face { | |
| 3327 | + font-family: 'Montserrat'; | |
| 3328 | + font-style: normal; | |
| 3329 | + font-weight: 100; | |
| 3330 | + font-display: swap; | |
| 3331 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3332 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3333 | +} | |
| 3334 | +/* latin */ | |
| 3335 | +@font-face { | |
| 3336 | + font-family: 'Montserrat'; | |
| 3337 | + font-style: normal; | |
| 3338 | + font-weight: 100; | |
| 3339 | + font-display: swap; | |
| 3340 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3341 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3342 | +} | |
| 3343 | +/* cyrillic-ext */ | |
| 3344 | +@font-face { | |
| 3345 | + font-family: 'Montserrat'; | |
| 3346 | + font-style: normal; | |
| 3347 | + font-weight: 200; | |
| 3348 | + font-display: swap; | |
| 3349 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3350 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3351 | +} | |
| 3352 | +/* cyrillic */ | |
| 3353 | +@font-face { | |
| 3354 | + font-family: 'Montserrat'; | |
| 3355 | + font-style: normal; | |
| 3356 | + font-weight: 200; | |
| 3357 | + font-display: swap; | |
| 3358 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3359 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3360 | +} | |
| 3361 | +/* vietnamese */ | |
| 3362 | +@font-face { | |
| 3363 | + font-family: 'Montserrat'; | |
| 3364 | + font-style: normal; | |
| 3365 | + font-weight: 200; | |
| 3366 | + font-display: swap; | |
| 3367 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3368 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3369 | +} | |
| 3370 | +/* latin-ext */ | |
| 3371 | +@font-face { | |
| 3372 | + font-family: 'Montserrat'; | |
| 3373 | + font-style: normal; | |
| 3374 | + font-weight: 200; | |
| 3375 | + font-display: swap; | |
| 3376 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3377 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3378 | +} | |
| 3379 | +/* latin */ | |
| 3380 | +@font-face { | |
| 3381 | + font-family: 'Montserrat'; | |
| 3382 | + font-style: normal; | |
| 3383 | + font-weight: 200; | |
| 3384 | + font-display: swap; | |
| 3385 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3386 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3387 | +} | |
| 3388 | +/* cyrillic-ext */ | |
| 3389 | +@font-face { | |
| 3390 | + font-family: 'Montserrat'; | |
| 3391 | + font-style: normal; | |
| 3392 | + font-weight: 300; | |
| 3393 | + font-display: swap; | |
| 3394 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3395 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3396 | +} | |
| 3397 | +/* cyrillic */ | |
| 3398 | +@font-face { | |
| 3399 | + font-family: 'Montserrat'; | |
| 3400 | + font-style: normal; | |
| 3401 | + font-weight: 300; | |
| 3402 | + font-display: swap; | |
| 3403 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3404 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3405 | +} | |
| 3406 | +/* vietnamese */ | |
| 3407 | +@font-face { | |
| 3408 | + font-family: 'Montserrat'; | |
| 3409 | + font-style: normal; | |
| 3410 | + font-weight: 300; | |
| 3411 | + font-display: swap; | |
| 3412 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3413 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3414 | +} | |
| 3415 | +/* latin-ext */ | |
| 3416 | +@font-face { | |
| 3417 | + font-family: 'Montserrat'; | |
| 3418 | + font-style: normal; | |
| 3419 | + font-weight: 300; | |
| 3420 | + font-display: swap; | |
| 3421 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3422 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3423 | +} | |
| 3424 | +/* latin */ | |
| 3425 | +@font-face { | |
| 3426 | + font-family: 'Montserrat'; | |
| 3427 | + font-style: normal; | |
| 3428 | + font-weight: 300; | |
| 3429 | + font-display: swap; | |
| 3430 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3431 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3432 | +} | |
| 3433 | +/* cyrillic-ext */ | |
| 3434 | +@font-face { | |
| 3435 | + font-family: 'Montserrat'; | |
| 3436 | + font-style: normal; | |
| 3437 | + font-weight: 400; | |
| 3438 | + font-display: swap; | |
| 3439 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3440 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3441 | +} | |
| 3442 | +/* cyrillic */ | |
| 3443 | +@font-face { | |
| 3444 | + font-family: 'Montserrat'; | |
| 3445 | + font-style: normal; | |
| 3446 | + font-weight: 400; | |
| 3447 | + font-display: swap; | |
| 3448 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3449 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3450 | +} | |
| 3451 | +/* vietnamese */ | |
| 3452 | +@font-face { | |
| 3453 | + font-family: 'Montserrat'; | |
| 3454 | + font-style: normal; | |
| 3455 | + font-weight: 400; | |
| 3456 | + font-display: swap; | |
| 3457 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3458 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3459 | +} | |
| 3460 | +/* latin-ext */ | |
| 3461 | +@font-face { | |
| 3462 | + font-family: 'Montserrat'; | |
| 3463 | + font-style: normal; | |
| 3464 | + font-weight: 400; | |
| 3465 | + font-display: swap; | |
| 3466 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3467 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3468 | +} | |
| 3469 | +/* latin */ | |
| 3470 | +@font-face { | |
| 3471 | + font-family: 'Montserrat'; | |
| 3472 | + font-style: normal; | |
| 3473 | + font-weight: 400; | |
| 3474 | + font-display: swap; | |
| 3475 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3476 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3477 | +} | |
| 3478 | +/* cyrillic-ext */ | |
| 3479 | +@font-face { | |
| 3480 | + font-family: 'Montserrat'; | |
| 3481 | + font-style: normal; | |
| 3482 | + font-weight: 500; | |
| 3483 | + font-display: swap; | |
| 3484 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3485 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3486 | +} | |
| 3487 | +/* cyrillic */ | |
| 3488 | +@font-face { | |
| 3489 | + font-family: 'Montserrat'; | |
| 3490 | + font-style: normal; | |
| 3491 | + font-weight: 500; | |
| 3492 | + font-display: swap; | |
| 3493 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3494 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3495 | +} | |
| 3496 | +/* vietnamese */ | |
| 3497 | +@font-face { | |
| 3498 | + font-family: 'Montserrat'; | |
| 3499 | + font-style: normal; | |
| 3500 | + font-weight: 500; | |
| 3501 | + font-display: swap; | |
| 3502 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3503 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3504 | +} | |
| 3505 | +/* latin-ext */ | |
| 3506 | +@font-face { | |
| 3507 | + font-family: 'Montserrat'; | |
| 3508 | + font-style: normal; | |
| 3509 | + font-weight: 500; | |
| 3510 | + font-display: swap; | |
| 3511 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3512 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3513 | +} | |
| 3514 | +/* latin */ | |
| 3515 | +@font-face { | |
| 3516 | + font-family: 'Montserrat'; | |
| 3517 | + font-style: normal; | |
| 3518 | + font-weight: 500; | |
| 3519 | + font-display: swap; | |
| 3520 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3521 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3522 | +} | |
| 3523 | +/* cyrillic-ext */ | |
| 3524 | +@font-face { | |
| 3525 | + font-family: 'Montserrat'; | |
| 3526 | + font-style: normal; | |
| 3527 | + font-weight: 600; | |
| 3528 | + font-display: swap; | |
| 3529 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3530 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3531 | +} | |
| 3532 | +/* cyrillic */ | |
| 3533 | +@font-face { | |
| 3534 | + font-family: 'Montserrat'; | |
| 3535 | + font-style: normal; | |
| 3536 | + font-weight: 600; | |
| 3537 | + font-display: swap; | |
| 3538 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3539 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3540 | +} | |
| 3541 | +/* vietnamese */ | |
| 3542 | +@font-face { | |
| 3543 | + font-family: 'Montserrat'; | |
| 3544 | + font-style: normal; | |
| 3545 | + font-weight: 600; | |
| 3546 | + font-display: swap; | |
| 3547 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3548 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3549 | +} | |
| 3550 | +/* latin-ext */ | |
| 3551 | +@font-face { | |
| 3552 | + font-family: 'Montserrat'; | |
| 3553 | + font-style: normal; | |
| 3554 | + font-weight: 600; | |
| 3555 | + font-display: swap; | |
| 3556 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3557 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3558 | +} | |
| 3559 | +/* latin */ | |
| 3560 | +@font-face { | |
| 3561 | + font-family: 'Montserrat'; | |
| 3562 | + font-style: normal; | |
| 3563 | + font-weight: 600; | |
| 3564 | + font-display: swap; | |
| 3565 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3566 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3567 | +} | |
| 3568 | +/* cyrillic-ext */ | |
| 3569 | +@font-face { | |
| 3570 | + font-family: 'Montserrat'; | |
| 3571 | + font-style: normal; | |
| 3572 | + font-weight: 700; | |
| 3573 | + font-display: swap; | |
| 3574 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3575 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3576 | +} | |
| 3577 | +/* cyrillic */ | |
| 3578 | +@font-face { | |
| 3579 | + font-family: 'Montserrat'; | |
| 3580 | + font-style: normal; | |
| 3581 | + font-weight: 700; | |
| 3582 | + font-display: swap; | |
| 3583 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3584 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3585 | +} | |
| 3586 | +/* vietnamese */ | |
| 3587 | +@font-face { | |
| 3588 | + font-family: 'Montserrat'; | |
| 3589 | + font-style: normal; | |
| 3590 | + font-weight: 700; | |
| 3591 | + font-display: swap; | |
| 3592 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3593 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3594 | +} | |
| 3595 | +/* latin-ext */ | |
| 3596 | +@font-face { | |
| 3597 | + font-family: 'Montserrat'; | |
| 3598 | + font-style: normal; | |
| 3599 | + font-weight: 700; | |
| 3600 | + font-display: swap; | |
| 3601 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3602 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3603 | +} | |
| 3604 | +/* latin */ | |
| 3605 | +@font-face { | |
| 3606 | + font-family: 'Montserrat'; | |
| 3607 | + font-style: normal; | |
| 3608 | + font-weight: 700; | |
| 3609 | + font-display: swap; | |
| 3610 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3611 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3612 | +} | |
| 3613 | +/* cyrillic-ext */ | |
| 3614 | +@font-face { | |
| 3615 | + font-family: 'Montserrat'; | |
| 3616 | + font-style: normal; | |
| 3617 | + font-weight: 800; | |
| 3618 | + font-display: swap; | |
| 3619 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3620 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3621 | +} | |
| 3622 | +/* cyrillic */ | |
| 3623 | +@font-face { | |
| 3624 | + font-family: 'Montserrat'; | |
| 3625 | + font-style: normal; | |
| 3626 | + font-weight: 800; | |
| 3627 | + font-display: swap; | |
| 3628 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3629 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3630 | +} | |
| 3631 | +/* vietnamese */ | |
| 3632 | +@font-face { | |
| 3633 | + font-family: 'Montserrat'; | |
| 3634 | + font-style: normal; | |
| 3635 | + font-weight: 800; | |
| 3636 | + font-display: swap; | |
| 3637 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3638 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3639 | +} | |
| 3640 | +/* latin-ext */ | |
| 3641 | +@font-face { | |
| 3642 | + font-family: 'Montserrat'; | |
| 3643 | + font-style: normal; | |
| 3644 | + font-weight: 800; | |
| 3645 | + font-display: swap; | |
| 3646 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3647 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3648 | +} | |
| 3649 | +/* latin */ | |
| 3650 | +@font-face { | |
| 3651 | + font-family: 'Montserrat'; | |
| 3652 | + font-style: normal; | |
| 3653 | + font-weight: 800; | |
| 3654 | + font-display: swap; | |
| 3655 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3656 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3657 | +} | |
| 3658 | +/* cyrillic-ext */ | |
| 3659 | +@font-face { | |
| 3660 | + font-family: 'Montserrat'; | |
| 3661 | + font-style: normal; | |
| 3662 | + font-weight: 900; | |
| 3663 | + font-display: swap; | |
| 3664 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTn89ddpROi.woff2) format('woff2'); | |
| 3665 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3666 | +} | |
| 3667 | +/* cyrillic */ | |
| 3668 | +@font-face { | |
| 3669 | + font-family: 'Montserrat'; | |
| 3670 | + font-style: normal; | |
| 3671 | + font-weight: 900; | |
| 3672 | + font-display: swap; | |
| 3673 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTn89ddpROi.woff2) format('woff2'); | |
| 3674 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3675 | +} | |
| 3676 | +/* vietnamese */ | |
| 3677 | +@font-face { | |
| 3678 | + font-family: 'Montserrat'; | |
| 3679 | + font-style: normal; | |
| 3680 | + font-weight: 900; | |
| 3681 | + font-display: swap; | |
| 3682 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTn89ddpROi.woff2) format('woff2'); | |
| 3683 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3684 | +} | |
| 3685 | +/* latin-ext */ | |
| 3686 | +@font-face { | |
| 3687 | + font-family: 'Montserrat'; | |
| 3688 | + font-style: normal; | |
| 3689 | + font-weight: 900; | |
| 3690 | + font-display: swap; | |
| 3691 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTn89ddpROi.woff2) format('woff2'); | |
| 3692 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3693 | +} | |
| 3694 | +/* latin */ | |
| 3695 | +@font-face { | |
| 3696 | + font-family: 'Montserrat'; | |
| 3697 | + font-style: normal; | |
| 3698 | + font-weight: 900; | |
| 3699 | + font-display: swap; | |
| 3700 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2'); | |
| 3701 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3702 | +} | |
| 3703 | + | |
| 3704 | +:root { | |
| 3705 | +--font-base: Montserrat; | |
| 3706 | +--font-headings: Montserrat; | |
| 3707 | +--font-input: Montserrat; | |
| 3708 | +} | |
| 3709 | +body, #content, .entry-content, .post-content, .page-content, .post-excerpt, .entry-summary, .entry-excerpt, .widget-area, .widget, .sidebar, #sidebar, footer, .footer, #footer, .site-footer { | |
| 3710 | +font-family: "Montserrat"; | |
| 3711 | + } | |
| 3712 | +#site-title, .site-title, #site-title a, .site-title a, .entry-title, .entry-title a, h1, h2, h3, h4, h5, h6, .widget-title, .elementor-heading-title { | |
| 3713 | +font-family: "Montserrat"; | |
| 3714 | +font-weight: 500; | |
| 3715 | + } | |
| 3716 | +button, .button, input, select, textarea, .wp-block-button, .wp-block-button__link { | |
| 3717 | +font-family: "Montserrat"; | |
| 3718 | +font-weight: 500; | |
| 3719 | + } | |
| 3720 | +#site-title, .site-title, #site-title a, .site-title a, #site-logo, #site-logo a, #logo, #logo a, .logo, .logo a, .wp-block-site-title, .wp-block-site-title a { | |
| 3721 | +font-family: "Montserrat"; | |
| 3722 | + } | |
| 3723 | +#site-description, .site-description, #site-tagline, .site-tagline, .wp-block-site-tagline { | |
| 3724 | +font-family: "Montserrat"; | |
| 3725 | + } | |
| 3726 | +.menu, .page_item a, .menu-item a, .wp-block-navigation, .wp-block-navigation-item__content { | |
| 3727 | +font-family: "Montserrat"; | |
| 3728 | + } | |
| 3729 | +.entry-content, .entry-content p, .post-content, .page-content, .post-excerpt, .entry-summary, .entry-excerpt, .excerpt, .excerpt p, .type-post p, .type-page p, .wp-block-post-content, .wp-block-post-excerpt, .elementor, .elementor p { | |
| 3730 | +font-family: "Montserrat"; | |
| 3731 | + } | |
| 3732 | +.wp-block-post-title, .wp-block-post-title a, .entry-title, .entry-title a, .post-title, .post-title a, .page-title, .entry-content h1, #content h1, .type-post h1, .type-page h1, .elementor h1 { | |
| 3733 | +font-family: "Montserrat"; | |
| 3734 | +font-weight: 700; | |
| 3735 | + } | |
| 3736 | +.entry-content h2, .post-content h2, .page-content h2, #content h2, .type-post h2, .type-page h2, .elementor h2 { | |
| 3737 | +font-family: "Montserrat"; | |
| 3738 | +font-weight: 800; | |
| 3739 | + } | |
| 3740 | +.entry-content h3, .post-content h3, .page-content h3, #content h3, .type-post h3, .type-page h3, .elementor h3 { | |
| 3741 | +font-family: "Montserrat"; | |
| 3742 | + } | |
| 3743 | +.entry-content h4, .post-content h4, .page-content h4, #content h4, .type-post h4, .type-page h4, .elementor h4 { | |
| 3744 | +font-family: "Montserrat"; | |
| 3745 | + } | |
| 3746 | +.entry-content h5, .post-content h5, .page-content h5, #content h5, .type-post h5, .type-page h5, .elementor h5 { | |
| 3747 | +font-family: "Montserrat"; | |
| 3748 | + } | |
| 3749 | +.entry-content h6, .post-content h6, .page-content h6, #content h6, .type-post h6, .type-page h6, .elementor h6 { | |
| 3750 | +font-family: "Montserrat"; | |
| 3751 | + } | |
| 3752 | +ul, ol, ul li, ol li, li { | |
| 3753 | +font-family: "Montserrat"; | |
| 3754 | + } | |
| 3755 | +blockquote, .wp-block-quote, blockquote p, .wp-block-quote p { | |
| 3756 | +font-family: "Montserrat"; | |
| 3757 | + } | |
| 3758 | +.widget-title, .widget-area h1, .widget-area h2, .widget-area h3, .widget-area h4, .widget-area h5, .widget-area h6, #secondary h1, #secondary h2, #secondary h3, #secondary h4, #secondary h5, #secondary h6 { | |
| 3759 | +font-family: "Montserrat"; | |
| 3760 | + } | |
| 3761 | +.widget-area, .widget, .sidebar, #sidebar, #secondary { | |
| 3762 | +font-family: "Montserrat"; | |
| 3763 | + } | |
| 3764 | +footer h1, footer h2, footer h3, footer h4, footer h5, footer h6, .footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6, #footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6 { | |
| 3765 | +font-family: "Montserrat"; | |
| 3766 | + } | |
| 3767 | +footer, #footer, .footer, .site-footer { | |
| 3768 | +font-family: "Montserrat"; | |
| 3769 | + } | |
| 3770 | + </style> | |
| 3771 | + <!-- Fonts Plugin CSS --> | |
| 3772 | + <noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript> | |
| 3773 | +<script> | |
| 3774 | +document.addEventListener( 'wpcf7mailsent', function( event ) { | |
| 3775 | + ga('send', 'event', 'Contact Form', 'submit'); | |
| 3776 | +}, false ); | |
| 3777 | +</script> | |
| 3778 | + | |
| 3779 | + | |
| 3780 | +</head> | |
| 3781 | + | |
| 3782 | +<body class="wp-singular job_listing-template-default single single-job_listing postid-53758 wp-theme-stack wp-child-theme-stack-child stack--rounded normal-layout dropdowns--hover active-tabs active-accordions parallax-enable-mobile stack-child wpb-js-composer js-comp-ver-8.7.3 vc_responsive elementor-default elementor-kit-45733" data-smooth-scroll-offset="0" data-smooth-scroll-offset-mobile="0" data-skip-responsive-menu="yes"> | |
| 3783 | + | |
| 3784 | +<a href="#" id="start" title="Start"></a> | |
| 3785 | + | |
| 3786 | +<div class="notification pos-top pos-right search-box bg--white border--bottom" data-animation="from-top" data-notification-link="search-box"> | |
| 3787 | + <form method="get" action="https://chum.carrieresante.gouv.qc.ca/"> | |
| 3788 | + <div class="row"> | |
| 3789 | + <div class="col-md-6 col-md-offset-3 col-sm-8 col-sm-offset-2"> | |
| 3790 | + <input type="search" name="s" placeholder="Type search query and hit enter" /> | |
| 3791 | + </div> | |
| 3792 | + </div><!--end of row--> | |
| 3793 | + </form> | |
| 3794 | +</div><!--end of notification--> | |
| 3795 | +<div class="nav-container"> | |
| 3796 | + | |
| 3797 | + <div class="bar bar--sm visible-xs original--bg bar--mobile-sticky" data-scroll-class="200px:pos-fixed"> | |
| 3798 | + <div class="container"> | |
| 3799 | + <div class="row"> | |
| 3800 | + <div class="col-xs-8 col-sm-10"> | |
| 3801 | + | |
| 3802 | +<a href="https://chum.carrieresante.gouv.qc.ca/" class="logo-holder"> | |
| 3803 | + <img class="logo logo-dark" alt="Logo Etablissement" src="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/06/logo_chum.png" /> | |
| 3804 | + <img class="logo logo-light" alt="Logo Etablissement" src="" /> | |
| 3805 | +</a> </div> | |
| 3806 | + <div class="col-xs-4 col-sm-2 text-right mobile-header"> | |
| 3807 | + <a href="#" class="hamburger-toggle" data-toggle-class="#menu1;hidden-xs"> | |
| 3808 | + <i class="icon--sm stack-interface stack-menu"></i> | |
| 3809 | + </a> | |
| 3810 | + </div> | |
| 3811 | + </div><!--end of row--> | |
| 3812 | + </div><!--end of container--> | |
| 3813 | + </div><!--end bar--> | |
| 3814 | + | |
| 3815 | + <nav id="menu1" class="bar bar--sm bar-1 hidden-xs hiddem-sm original--bg" data-scroll-class="200px:pos-fixed"> | |
| 3816 | + <div class="container"> | |
| 3817 | + <div class="row"> | |
| 3818 | + <div class="col-md-1 col-sm-2 hidden-xs"> | |
| 3819 | + <div class="bar__module"> | |
| 3820 | + | |
| 3821 | +<a href="https://chum.carrieresante.gouv.qc.ca/" class="logo-holder"> | |
| 3822 | + <img class="logo logo-dark" alt="Logo Etablissement" src="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/06/logo_chum.png" /> | |
| 3823 | + <img class="logo logo-light" alt="Logo Etablissement" src="" /> | |
| 3824 | +</a> | |
| 3825 | + </div><!--end module--> | |
| 3826 | + </div> | |
| 3827 | + <div class="col-md-11 col-sm-12 text-right text-left-xs text-left-sm"> | |
| 3828 | + <div class="bar__module"> | |
| 3829 | + <ul id="menu-header-fr" class="menu-horizontal text-left"><li id="menu-item-4481" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-4481 dropdown dropdown--hover"><a href="#" class="dropdown__trigger"><span>Emplois</span></a><div class="dropdown__container"><div class="container"><div class="row"><div class="dropdown__content col-md-4 col-sm-4"><ul class="menu-vertical"> <li id="menu-item-45752" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45752"><a href="https://chum.carrieresante.gouv.qc.ca/soins-infirmiers-et-cardiorespiratoires/">Soins infirmiers et cardiorespiratoires</a></li> | |
| 3830 | + <li id="menu-item-45750" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45750"><a href="https://chum.carrieresante.gouv.qc.ca/gestion/">Gestion</a></li> | |
| 3831 | + <li id="menu-item-45749" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45749"><a href="https://chum.carrieresante.gouv.qc.ca/personnel-de-ladministration/">Personnel de l’administration</a></li> | |
| 3832 | + <li id="menu-item-45753" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45753"><a href="https://chum.carrieresante.gouv.qc.ca/physique-et-genie-biomedical/">Physique et génie biomédical</a></li> | |
| 3833 | + <li id="menu-item-46249" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-46249"><a href="https://chum.carrieresante.gouv.qc.ca/professionnel-le-et-technicien-ne-de-la-sante-et-des-services-sociaux/">Professionnel.le et technicien.ne de la santé et des services sociaux</a></li> | |
| 3834 | + <li id="menu-item-45751" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45751"><a href="https://chum.carrieresante.gouv.qc.ca/assistance-a-la-personne-services-et-metiers/">Assistance à la personne – services et métiers</a></li> | |
| 3835 | +</ul></div></div></div></div></li> | |
| 3836 | +<li id="menu-item-20423" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20423"><a href="https://chum-recrutement.carrieresante.gouv.qc.ca">Dépose ton CV</a></li> | |
| 3837 | +<li id="menu-item-20422" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20422"><a href="https://chum.carrieresante.gouv.qc.ca/alerte-emplois/">Alerte emploi</a></li> | |
| 3838 | +<li id="menu-item-4839" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4839"><a href="https://chum.carrieresante.gouv.qc.ca/nous-joindre/">Nous joindre</a></li> | |
| 3839 | +</ul></div> | |
| 3840 | + | |
| 3841 | +<div class="bar__module stack-header-buttons"> | |
| 3842 | + | |
| 3843 | + | |
| 3844 | + | |
| 3845 | + <a | |
| 3846 | + class="btn btn--sm btn--demo" | |
| 3847 | + href="https://chum-recrutement.carrieresante.gouv.qc.ca" | |
| 3848 | + target="" | |
| 3849 | + > | |
| 3850 | + <span class="btn__text">Mon profil</span> | |
| 3851 | + </a> | |
| 3852 | + | |
| 3853 | + | |
| 3854 | +</div><!--end module--> </div> | |
| 3855 | + </div><!--end of row--> | |
| 3856 | + </div><!--end of container--> | |
| 3857 | + </nav><!--end bar--> | |
| 3858 | + | |
| 3859 | +</div> | |
| 3860 | +<div class="main-container"> | |
| 3861 | + | |
| 3862 | + | |
| 3863 | +<section> | |
| 3864 | + <div class="container"> | |
| 3865 | + <div class="row"> | |
| 3866 | + | |
| 3867 | + <div class="col-sm-10 col-md-8 col-sm-offset-1 col-md-offset-2"> | |
| 3868 | + <article> | |
| 3869 | + | |
| 3870 | + <div class="article__title text-center"> | |
| 3871 | + <h1 class="h2">Technologue en électrophysiologie médicale – Secteur de la neurologie</h1> </div><!--end article title--> | |
| 3872 | + <span>16 juin 2026</span> | <span></span> | |
| 3873 | + <div class="article__body post-content"> | |
| 3874 | + | |
| 3875 | + <div class="featured-image-holder"> | |
| 3876 | + </div> | |
| 3877 | + | |
| 3878 | + <div class="single_job_listing"> | |
| 3879 | + | |
| 3880 | +<ul class="job-listing-meta meta"> | |
| 3881 | + | |
| 3882 | + | |
| 3883 | + <li class="job-type temps-complet">TC - Temps complet</li> | |
| 3884 | + | |
| 3885 | + | |
| 3886 | + <li class="location"><a class="google_map_link" href="https://maps.google.com/maps?q=CHUM&zoom=14&size=512x512&maptype=roadmap&sensor=false" target="_blank">CHUM</a></li> | |
| 3887 | + | |
| 3888 | + <li class="date-posted"><time datetime="2026-06-16">Publié il y a 2 mois</time></li> | |
| 3889 | + | |
| 3890 | + | |
| 3891 | + | |
| 3892 | + </ul> | |
| 3893 | + | |
| 3894 | + <div class="before-job"> | |
| 3895 | + <div class="job_application application"> | |
| 3896 | + | |
| 3897 | + <button id="applyButton_6a850ffb2b4c3" class="application_button button">Postuler</button> | |
| 3898 | + <script> | |
| 3899 | + document.getElementById('applyButton_6a850ffb2b4c3').addEventListener('click', function() { | |
| 3900 | + window.open('https://chum-recrutement.carrieresante.gouv.qc.ca/Emploi/Index/Consulter?code=2026-001578', '_blank'); | |
| 3901 | + }); | |
| 3902 | + </script> | |
| 3903 | + | |
| 3904 | + </div> | |
| 3905 | + </div> | |
| 3906 | + | |
| 3907 | + <div class="job_description"> | |
| 3908 | + | |
| 3909 | + <div class="informations-de-base"><div class="info-item"><span class="icon"><svg class="svg-location" xmlns="http://www.w3.org/2000/svg" width="17.384" height="24" viewBox="0 0 17.384 24"><path d="M8.692,0A8.7,8.7,0,0,0,0,8.692C0,14.64,7.778,23.372,8.11,23.74a.783.783,0,0,0,1.165,0c.331-.369,8.11-9.1,8.11-15.049A8.7,8.7,0,0,0,8.692,0m0,13.065a4.373,4.373,0,1,1,4.373-4.373,4.378,4.378,0,0,1-4.373,4.373" fill="#16375e"/></svg></span><span class="info-text">CHUM</span></div><div class="info-item"><span class="icon"><svg class="svg-salary" xmlns="http://www.w3.org/2000/svg" width="22" height="26" viewBox="0 0 22 26"><path d="M.6,7.913A.594.594,0,0,1,0,7.32V5.539A2.375,2.375,0,0,1,2.374,3.165H4.748V.593A.594.594,0,0,1,5.343,0H7.32a.593.593,0,0,1,.593.593V3.165h6.331V.593a.594.594,0,0,1,.6-.593h1.977a.593.593,0,0,1,.593.593V3.165h2.374a2.375,2.375,0,0,1,2.374,2.374V7.32a.593.593,0,0,1-.593.593ZM21.564,9.5a.593.593,0,0,1,.593.593v12.86a2.375,2.375,0,0,1-2.374,2.374H2.374A2.375,2.375,0,0,1,0,22.949V10.089A.594.594,0,0,1,.6,9.5Zm-5.879,3.34a.591.591,0,0,0-.838,0L9.6,18.036,7.329,15.742a.6.6,0,0,0-.84,0L5.084,17.133a.594.594,0,0,0,0,.84L9.167,22.09a.589.589,0,0,0,.838,0l7.071-7.014a.591.591,0,0,0,0-.838Z" fill="#16375e"/></svg></span><span class="info-text">Entre 27,91 $ et 38,91 $/heure</span></div><div class="info-item"><span class="icon"><svg class="svg-status" xmlns="http://www.w3.org/2000/svg" width="27" height="16" viewBox="0 0 27 16"><path d="M26.882,1.344V14.785a1.345,1.345,0,0,1-1.344,1.344H1.344A1.345,1.345,0,0,1,0,14.785V1.344A1.345,1.345,0,0,1,1.344,0H25.538a1.345,1.345,0,0,1,1.344,1.344M4.7,2.016H2.016V4.7A2.687,2.687,0,0,0,4.7,2.016m0,12.1a2.687,2.687,0,0,0-2.688-2.688v2.688ZM16.8,8.065c0-2.228-1.5-4.032-3.36-4.032s-3.36,1.8-3.36,4.032,1.5,4.032,3.36,4.032,3.36-1.8,3.36-4.032m8.065-6.049H22.178A2.687,2.687,0,0,0,24.866,4.7Zm0,9.409a2.687,2.687,0,0,0-2.688,2.688h2.688Z" fill="#16375e"/></svg></span><span class="info-text">TC - Temps complet</span></div></div> <h2>Mandat</h2> | |
| 3910 | +<div class="default-text"><span></p> | |
| 3911 | +<p>Le CHUM est un hôpital universitaire à la fois innovant et humain, au service des patient(es) et du réseau. Il offre les meilleurs soins, spécialisés et surspécialisés à toute la population québécoise. Grâce à ses expertises uniques, la recherche et ses innovations, le CHUM améliore la santé globale de la population. La communauté CHUM est portée par l’audace, nourrie par l’apprentissage continu, unie par la collaboration et guidée par la bienveillance. Travailler au CHUM, c’est faire partie d’une équipe dynamique, humaine et engagée, où chacun.ne contribue à l’excellence des soins et l’avancement des connaissances, au profit de la population de tout le Québec. </p> | |
| 3912 | +<p><strong> </strong></p> | |
| 3913 | +<p>Nous sommes présentement à la recherche de technologues en électrophysiologie médicale pour combler les besoins au sein de l’équipe.</p> | |
| 3914 | +<p>Au fil des ans, le Service d’électrophysiologie médicale du CHUM s’est distingué par son expertise, son dynamisme et la qualité des interventions de ses membres qui accordent une grande importance au travail d’équipe et au travail en inter et en multidisciplinarité.</p> | |
| 3915 | +<p>En raison des soins spécialisés et ultraspécialisés qu’ils offrent à notre clientèle, les techniciens en EPM sont à l’avant-plan de la profession. Ils participent activement à l’enseignement auprès des stagiaires du programme d’EPM, des résidents des diverses spécialités ainsi qu’auprès des membres des équipes multidisciplinaires.</p> | |
| 3916 | +<p>De nombreuses activités de formation continue et de perfectionnement en cours d’emploi sont offertes par l’établissement </p> | |
| 3917 | +<p></span></div> | |
| 3918 | +<h2>Exigences</h2> | |
| 3919 | +<div class="default-text"><span></p> | |
| 3920 | +<p>– Diplôme d’études collégiale (DEC) technique avec spécialisation en électrophysiologie médicale.<br />– Doit être membre de l’Ordre des technologues en imagerie médicale, en radio-oncologie et en électrophysiologie médicale du Québec (OTIMROEPMQ)</p> | |
| 3921 | +<p><strong>QUALITÉS ET COMPÉTENCES RECHERCHÉES</strong><br />– Autonomie, sens des responsabilités<br />– Esprit de collaboration et travail d’équipe<br />– Sens de la créativité et esprit d’innovation<br />– Capacité d’influence<br />– Orientation service à la clientèle et partenariat<br />– Esprit d’analyse et de synthèse<br />– Capacité d’adaptation et tolérance à l’ambiguïté </p> | |
| 3922 | +<p><strong>AVANTAGES SOCIAUX</strong><br />– Possibilité de faire du télétravail quelques jours par semaine<br />– Quatre (4) semaines de vacances payées après un (1) an <br />– Fonds de pension à prestation déterminée et plan de retraite avantageux <br />– Treize (13) jours de congés fériés <br />– Neuf point six (9,6) jours de maladie monnayable au début décembre, si non-utilisés<br />– Programme d’assurances collectives complet <br />– Rabais corporatif avec plusieurs partenaires pour les employés du CHUM </p> | |
| 3923 | +<p>Les candidats seront soumis à un processus de sélection.<br />Nous remercions toutes les personnes qui poseront leur candidature, mais ne communiquerons qu’avec celles retenues pour un test ou une entrevue. </p> | |
| 3924 | +<p><strong>Diplôme obtenu hors Québec</strong> : Nous exigeons l’évaluation comparative des études émise par le ministère de l’Immigration de la Francisation et de l’Intégration : https://www.quebec.ca/immigration/travailler-quebec/faire-reconnaitre-competences-acquises-etranger/obtenir-evaluation-comparative. » </p> | |
| 3925 | +<p>Il est « essentiel » de joindre votre CV au présent formulaire pour que votre candidature soit considérée</p> | |
| 3926 | +<p> </span></div> | |
| 3927 | + <p> | |
| 3928 | + <h2>Accès à l'égalité en emploi</h2> | |
| 3929 | + Conformément à la <b>Loi sur l'Accès à l'égalité en emploi</b>, tous les établissements de santé et de services sociaux | |
| 3930 | + appliquent un programme d'accès à l'égalité. De ce fait, les personnes issues des groupes visés | |
| 3931 | + (femme, autochtone, minorité visible, minorité ethnique et personne handicapée) sont encouragées à faire parvenir leur | |
| 3932 | + candidature. De plus, des mesures d'adaptation peuvent être offertes aux personnes handicapées en fonction de leurs | |
| 3933 | + besoins. Selon le contexte, le genre masculin ou féminin utilisé dans les affichages désigne aussi bien les femmes que | |
| 3934 | + les hommes. | |
| 3935 | + </p> | |
| 3936 | + </div> | |
| 3937 | + <hr><div class="conditions-de-travail"><div class="ct-row"><span class="ct-label">Catégorie :</span><span class="ct-value">Professionnel.le et technicien.ne de la santé et des services sociaux</span></div><div class="ct-row"><span class="ct-label">Période salariale :</span><span class="ct-value">Horaire</span></div><div class="ct-row"><span class="ct-label">Durée :</span><span class="ct-value">Indéterminée</span></div><div class="ct-row"><span class="ct-label">Heures par semaine :</span><span class="ct-value">35</span></div><div class="ct-row"><span class="ct-label">Date d'affichage :</span><span class="ct-value">du 2026-06-16 à 2026-08-31</span></div></div> | |
| 3938 | + <div class="apply-buttons"> | |
| 3939 | + <div class="apply-buttons-1"> | |
| 3940 | + <h2>Cet emploi t'intéresse?</h2> | |
| 3941 | + <div class="job_application application"> | |
| 3942 | + | |
| 3943 | + <button id="applyButton_6a850ffb2baae" class="application_button button">Postuler</button> | |
| 3944 | + <script> | |
| 3945 | + document.getElementById('applyButton_6a850ffb2baae').addEventListener('click', function() { | |
| 3946 | + window.open('https://chum-recrutement.carrieresante.gouv.qc.ca/Emploi/Index/Consulter?code=2026-001578', '_blank'); | |
| 3947 | + }); | |
| 3948 | + </script> | |
| 3949 | + | |
| 3950 | + </div> | |
| 3951 | + </div> | |
| 3952 | + <div class="apply-buttons-2"> | |
| 3953 | + <h2>Tu as des questions ou besoin d’information?</h2> | |
| 3954 | + <div> | |
| 3955 | + <a href="https://chum.carrieresante.gouv.qc.ca/nous-joindre/" rel="noopener">Nous joindre</a> | |
| 3956 | + </div> | |
| 3957 | + </div> | |
| 3958 | + </div> | |
| 3959 | + | |
| 3960 | + </div> | |
| 3961 | + | |
| 3962 | +<div class="addtoany_share_save_container addtoany_content addtoany_content_bottom"><div class="addtoany_header">Partagez :</div><div class="a2a_kit a2a_kit_size_32 addtoany_list" data-a2a-url="https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-electrophysiologie-medicale-secteur-de-la-neurologie/" data-a2a-title="Technologue en électrophysiologie médicale – Secteur de la neurologie"><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-electrophysiologie-medicale-secteur-de-la-neurologie%2F&linkname=Technologue%20en%20%C3%A9lectrophysiologie%20m%C3%A9dicale%20%E2%80%93%20Secteur%20de%20la%20neurologie" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-electrophysiologie-medicale-secteur-de-la-neurologie%2F&linkname=Technologue%20en%20%C3%A9lectrophysiologie%20m%C3%A9dicale%20%E2%80%93%20Secteur%20de%20la%20neurologie" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-electrophysiologie-medicale-secteur-de-la-neurologie%2F&linkname=Technologue%20en%20%C3%A9lectrophysiologie%20m%C3%A9dicale%20%E2%80%93%20Secteur%20de%20la%20neurologie" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-electrophysiologie-medicale-secteur-de-la-neurologie%2F&linkname=Technologue%20en%20%C3%A9lectrophysiologie%20m%C3%A9dicale%20%E2%80%93%20Secteur%20de%20la%20neurologie" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-electrophysiologie-medicale-secteur-de-la-neurologie%2F&linkname=Technologue%20en%20%C3%A9lectrophysiologie%20m%C3%A9dicale%20%E2%80%93%20Secteur%20de%20la%20neurologie" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share"></a></div></div> <strong>Partagez :</strong> <div class="a2a_kit a2a_kit_size_32 addtoany_list" data-a2a-url="https://chum.carrieresante.gouv.qc.ca/poste/technologue-en-electrophysiologie-medicale-secteur-de-la-neurologie/" data-a2a-title="Technologue en électrophysiologie médicale – Secteur de la neurologie"><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-electrophysiologie-medicale-secteur-de-la-neurologie%2F&linkname=Technologue%20en%20%C3%A9lectrophysiologie%20m%C3%A9dicale%20%E2%80%93%20Secteur%20de%20la%20neurologie" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-electrophysiologie-medicale-secteur-de-la-neurologie%2F&linkname=Technologue%20en%20%C3%A9lectrophysiologie%20m%C3%A9dicale%20%E2%80%93%20Secteur%20de%20la%20neurologie" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-electrophysiologie-medicale-secteur-de-la-neurologie%2F&linkname=Technologue%20en%20%C3%A9lectrophysiologie%20m%C3%A9dicale%20%E2%80%93%20Secteur%20de%20la%20neurologie" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-electrophysiologie-medicale-secteur-de-la-neurologie%2F&linkname=Technologue%20en%20%C3%A9lectrophysiologie%20m%C3%A9dicale%20%E2%80%93%20Secteur%20de%20la%20neurologie" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Ftechnologue-en-electrophysiologie-medicale-secteur-de-la-neurologie%2F&linkname=Technologue%20en%20%C3%A9lectrophysiologie%20m%C3%A9dicale%20%E2%80%93%20Secteur%20de%20la%20neurologie" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share"></a></div> <div class="post__tags"> | |
| 3963 | + </div> | |
| 3964 | + | |
| 3965 | + </div> | |
| 3966 | + | |
| 3967 | + | |
| 3968 | + </article><!--end item--> | |
| 3969 | + </div> | |
| 3970 | + | |
| 3971 | + | |
| 3972 | + </div><!--end of row--> | |
| 3973 | + </div><!--end of container--> | |
| 3974 | +</section> | |
| 3975 | + | |
| 3976 | +<footer class="footer-6 unpad--bottom bg--secondary"> | |
| 3977 | + <div class="container"> | |
| 3978 | + <div class="row"> | |
| 3979 | + <div class="col-sm-6"><div id="block-17" class="widget widget_block sidebar__element"><p><span class="left-section"><br /> | |
| 3980 | +<span class="footer-t">Emplois disponibles</span></p> | |
| 3981 | +<p><span class="footer-s"><span class="link"><a href="https://chum.carrieresante.gouv.qc.ca/soins-infirmiers-et-cardiorespiratoires/" rel="noopener" >Soins infirmiers et cardiorespiratoires</a></span><br /> | |
| 3982 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/gestion/" rel="noopener" >Gestion</a></span><br /> | |
| 3983 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/personnel-de-ladministration/" rel="noopener" >Personnel de bureau,professionnel.le et technicien.ne de l'administration</a></span><br /> | |
| 3984 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/physique-et-genie-biomedical/" rel="noopener" >Physique et génie biomédical</a></span><br /> | |
| 3985 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/professionnel-le-et-technicien-ne-de-la-sante-et-des-services-sociaux/" rel="noopener" >Professionnel.le et technicien.ne de la santé et des services sociaux</a></span><br /> | |
| 3986 | + <span class="link"> <a href="https://chum.carrieresante.gouv.qc.ca/assistance-a-la-personne-services-et-metiers/" rel="noopener" >Assistance à la personne, emplois de services et métiers</a></span><br /> | |
| 3987 | +</span><br /></p> | |
| 3988 | +</div></div><div class="col-sm-6"><div id="block-22" class="widget widget_block sidebar__element"><div class="right-section"> | |
| 3989 | +<p><span class="footer"><a href="https://www.chumontreal.qc.ca/" target="_blank" rel="noopener" class="footer-t">Découvrir le CHUM</a><br /> | |
| 3990 | + <a href="https://www.chumontreal.qc.ca/enseignement-academie/stages-chum" rel="noopener" class="footer-t" target="_blank">Trouver un stage</a><br /> | |
| 3991 | + <a href="https://www.chumontreal.qc.ca/repertoire/service-benevolat-animation-loisirs" rel="noopener" class="footer-t" target="_blank">Devenir bénévole</a><br /> | |
| 3992 | +</span></p> | |
| 3993 | +<div class="footer-with-b"> | |
| 3994 | + <a href="https://chum.carrieresante.gouv.qc.ca/nous-joindre/" rel="noopener" class="footer-b">Nous joindre</a><br /> | |
| 3995 | + <a href="https://chum-recrutement.carrieresante.gouv.qc.ca" target="_blank" rel="noopener" class="footer-b">Dépose ton CV</a> | |
| 3996 | +</div> | |
| 3997 | +</div> | |
| 3998 | +</div></div><div class="clear"></div> </div><!--end of row--> | |
| 3999 | + </div><!--end of container--> | |
| 4000 | + <div class="footer__lower text-center-xs"> | |
| 4001 | + <div class="container"> | |
| 4002 | + <div class="row"> | |
| 4003 | + <div class="col-sm-3"> | |
| 4004 | + | |
| 4005 | + </div> | |
| 4006 | + <div class="col-sm-6 footer-stack-copyright"> | |
| 4007 | + <div class="menu-footer-menu-container"><ul id="menu-footer-menu" class="menu"><li id="menu-item-4840" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4840"><a href="https://chum.carrieresante.gouv.qc.ca/politique-de-confidentialite/">Politique de confidentialité</a></li> | |
| 4008 | +</ul></div> Copyright © 2026 - Makila <br> | |
| 4009 | + </div> | |
| 4010 | + <div class="col-sm-3 text-right text-center-xs"> | |
| 4011 | + | |
| 4012 | + </div> | |
| 4013 | + </div><!--end of row--> | |
| 4014 | + </div><!--end of container--> | |
| 4015 | + </div> | |
| 4016 | +</footer> | |
| 4017 | +</div><!-- /main-container --> | |
| 4018 | + | |
| 4019 | +<script type="text/javascript"> | |
| 4020 | +(function(){var s = document.getElementsByTagName("script")[0]; | |
| 4021 | +var b = document.createElement("script"); | |
| 4022 | +b.type = "text/javascript";b.async = true; | |
| 4023 | +b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js"; | |
| 4024 | +s.parentNode.insertBefore(b, s);})(); | |
| 4025 | +</script> | |
| 4026 | + | |
| 4027 | +<script type="speculationrules"> | |
| 4028 | +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/stack-child/*","/wp-content/themes/stack/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} | |
| 4029 | +</script> | |
| 4030 | +<!-- WP Job Manager Structured Data --> | |
| 4031 | +<script type="application/ld+json">{"@context":"http:\/\/schema.org\/","@type":"JobPosting","datePosted":"2026-06-16T00:00:00-04:00","validThrough":"2026-08-31T23:59:59-04:00","title":"Technologue en \u00e9lectrophysiologie m\u00e9dicale &#8211; Secteur de la neurologie","description":"<h2>Mandat<\/h2>\n<div class=\"default-text\"><span><\/p>\n<p>Le CHUM est un h\u00f4pital universitaire \u00e0 la fois innovant et humain, au service des patient(es)\u00a0 et du r\u00e9seau. Il offre les meilleurs soins, sp\u00e9cialis\u00e9s et sursp\u00e9cialis\u00e9s \u00e0 toute la population qu\u00e9b\u00e9coise. Gr\u00e2ce \u00e0 ses expertises uniques, la recherche et ses innovations, le CHUM am\u00e9liore la sant\u00e9 globale de la population. La communaut\u00e9 CHUM est port\u00e9e par l&rsquo;audace, nourrie par l&rsquo;apprentissage continu, unie par la collaboration et guid\u00e9e par la bienveillance. Travailler au CHUM, c&rsquo;est faire partie d&rsquo;une \u00e9quipe dynamique, humaine et engag\u00e9e, o\u00f9 chacun.ne contribue \u00e0 l&rsquo;excellence des soins et l&rsquo;avancement des connaissances, au profit de la population de tout le Qu\u00e9bec.\u00a0<\/p>\n<p><strong>\u00a0<\/strong><\/p>\n<p>Nous sommes pr\u00e9sentement \u00e0 la recherche de technologues en \u00e9lectrophysiologie m\u00e9dicale pour combler les besoins au sein de l&rsquo;\u00e9quipe.<\/p>\n<p>Au fil des ans, le Service d\u2019\u00e9lectrophysiologie m\u00e9dicale du CHUM s\u2019est distingu\u00e9 par son expertise, son dynamisme et la qualit\u00e9 des interventions de ses membres qui accordent une grande importance au travail d\u2019\u00e9quipe et au travail en inter et en multidisciplinarit\u00e9.<\/p>\n<p>En raison des soins sp\u00e9cialis\u00e9s et ultrasp\u00e9cialis\u00e9s qu&rsquo;ils offrent \u00e0 notre client\u00e8le, les techniciens en EPM sont \u00e0 l&rsquo;avant-plan de la profession. Ils participent activement \u00e0 l&rsquo;enseignement aupr\u00e8s des stagiaires du programme d&rsquo;EPM, des r\u00e9sidents des diverses sp\u00e9cialit\u00e9s ainsi qu&rsquo;aupr\u00e8s des membres des \u00e9quipes multidisciplinaires.<\/p>\n<p>De nombreuses activit\u00e9s de formation continue et de perfectionnement en cours d&#8217;emploi sont offertes par l&rsquo;\u00e9tablissement <\/p>\n<p><\/span><\/div>\n<h2>Exigences<\/h2>\n<div class=\"default-text\"><span><\/p>\n<p>&#8211; Dipl\u00f4me d&rsquo;\u00e9tudes coll\u00e9giale (DEC) technique avec sp\u00e9cialisation en \u00e9lectrophysiologie m\u00e9dicale.<br \/>&#8211; Doit \u00eatre membre de l&rsquo;Ordre des technologues en imagerie m\u00e9dicale, en radio-oncologie et en \u00e9lectrophysiologie m\u00e9dicale du Qu\u00e9bec (OTIMROEPMQ)<\/p>\n<p><strong>QUALIT\u00c9S ET COMP\u00c9TENCES RECHERCH\u00c9ES<\/strong><br \/>&#8211; Autonomie, sens des responsabilit\u00e9s<br \/>&#8211; Esprit de collaboration et travail d\u2019\u00e9quipe<br \/>&#8211; Sens de la cr\u00e9ativit\u00e9 et esprit d&rsquo;innovation<br \/>&#8211; Capacit\u00e9 d\u2019influence<br \/>&#8211; Orientation service \u00e0 la client\u00e8le et partenariat<br \/>&#8211; Esprit d\u2019analyse et de synth\u00e8se<br \/>&#8211; Capacit\u00e9 d\u2019adaptation et tol\u00e9rance \u00e0 l\u2019ambigu\u00eft\u00e9\u00a0\u00a0<\/p>\n<p><strong>AVANTAGES SOCIAUX<\/strong><br \/>&#8211; Possibilit\u00e9 de faire du t\u00e9l\u00e9travail quelques jours par semaine<br \/>&#8211; Quatre (4) semaines de vacances pay\u00e9es apr\u00e8s un (1) an\u00a0<br \/>&#8211; Fonds de pension \u00e0 prestation d\u00e9termin\u00e9e et plan de retraite avantageux\u00a0<br \/>&#8211; Treize (13) jours de cong\u00e9s f\u00e9ri\u00e9s\u00a0<br \/>&#8211; Neuf point six (9,6) jours de maladie monnayable au d\u00e9but d\u00e9cembre, si non-utilis\u00e9s<br \/>&#8211; Programme d\u2019assurances collectives complet\u00a0<br \/>&#8211; Rabais corporatif avec plusieurs partenaires pour les employ\u00e9s du CHUM\u00a0\u00a0<\/p>\n<p>Les candidats seront soumis \u00e0 un processus de s\u00e9lection.<br \/>Nous remercions toutes les personnes qui poseront leur candidature, mais ne communiquerons qu&rsquo;avec celles retenues pour un test ou une entrevue.\u00a0<\/p>\n<p><strong>Dipl\u00f4me obtenu hors Qu\u00e9bec<\/strong> : Nous exigeons l&rsquo;\u00e9valuation comparative des \u00e9tudes \u00e9mise par le minist\u00e8re de l&rsquo;Immigration de la Francisation et de l&rsquo;Int\u00e9gration : https:\/\/www.quebec.ca\/immigration\/travailler-quebec\/faire-reconnaitre-competences-acquises-etranger\/obtenir-evaluation-comparative.\u00a0\u00bb\u00a0<\/p>\n<p>Il est \u00ab\u00a0essentiel\u00a0\u00bb de joindre votre CV au pr\u00e9sent formulaire pour que votre candidature soit consid\u00e9r\u00e9e<\/p>\n<p>\u00a0\u00a0<\/span><\/div>\n","employmentType":["FULL_TIME"],"hiringOrganization":{"@type":"Organization","name":""},"identifier":{"@type":"PropertyValue","name":"","value":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/technologue-en-electrophysiologie-medicale-secteur-de-la-neurologie\/"},"jobLocation":{"@type":"Place","address":"CHUM"},"directApply":true,"mainEntityOfPage":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/technologue-en-electrophysiologie-medicale-secteur-de-la-neurologie\/"}}</script> <script> | |
| 4032 | + const lazyloadRunObserver = () => { | |
| 4033 | + const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); | |
| 4034 | + const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { | |
| 4035 | + entries.forEach( ( entry ) => { | |
| 4036 | + if ( entry.isIntersecting ) { | |
| 4037 | + let lazyloadBackground = entry.target; | |
| 4038 | + if( lazyloadBackground ) { | |
| 4039 | + lazyloadBackground.classList.add( 'e-lazyloaded' ); | |
| 4040 | + } | |
| 4041 | + lazyloadBackgroundObserver.unobserve( entry.target ); | |
| 4042 | + } | |
| 4043 | + }); | |
| 4044 | + }, { rootMargin: '200px 0px 200px 0px' } ); | |
| 4045 | + lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { | |
| 4046 | + lazyloadBackgroundObserver.observe( lazyloadBackground ); | |
| 4047 | + } ); | |
| 4048 | + }; | |
| 4049 | + const events = [ | |
| 4050 | + 'DOMContentLoaded', | |
| 4051 | + 'elementor/lazyload/observe', | |
| 4052 | + ]; | |
| 4053 | + events.forEach( ( event ) => { | |
| 4054 | + document.addEventListener( event, lazyloadRunObserver ); | |
| 4055 | + } ); | |
| 4056 | + </script> | |
| 4057 | + <style id="global-styles-inline-css"> | |
| 4058 | +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-family--montserrat: Montserrat;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;} | |
| 4059 | +/*# sourceURL=global-styles-inline-css */ | |
| 4060 | +</style> | |
| 4061 | +<script id="wp-hooks-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script> | |
| 4062 | +<script id="wp-i18n-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script> | |
| 4063 | +<script id="wp-i18n-js-after"> | |
| 4064 | +wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); | |
| 4065 | +//# sourceURL=wp-i18n-js-after | |
| 4066 | +</script> | |
| 4067 | +<script id="swv-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.1.6"></script> | |
| 4068 | +<script id="contact-form-7-js-translations"> | |
| 4069 | +( function( domain, translations ) { | |
| 4070 | + var localeData = translations.locale_data[ domain ] || translations.locale_data.messages; | |
| 4071 | + localeData[""].domain = domain; | |
| 4072 | + wp.i18n.setLocaleData( localeData, domain ); | |
| 4073 | +} )( "contact-form-7", {"translation-revision-date":"2026-07-27 15:37:27+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"This contact form is placed in the wrong place.":["Ce formulaire de contact est plac\u00e9 dans un mauvais endroit."],"Error:":["Erreur\u00a0:"]}},"comment":{"reference":"includes\/js\/index.js"}} ); | |
| 4074 | +//# sourceURL=contact-form-7-js-translations | |
| 4075 | +</script> | |
| 4076 | +<script id="contact-form-7-js-before"> | |
| 4077 | +var wpcf7 = { | |
| 4078 | + "api": { | |
| 4079 | + "root": "https:\/\/chum.carrieresante.gouv.qc.ca\/wp-json\/", | |
| 4080 | + "namespace": "contact-form-7\/v1" | |
| 4081 | + }, | |
| 4082 | + "cached": 1 | |
| 4083 | +}; | |
| 4084 | +//# sourceURL=contact-form-7-js-before | |
| 4085 | +</script> | |
| 4086 | +<script id="contact-form-7-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.6"></script> | |
| 4087 | +<script id="wpmssab-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/wpmss/wpmssab.min.js?ver=1708979088"></script> | |
| 4088 | +<script id="SmoothScroll-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/mousewheel-smooth-scroll/js/SmoothScroll.min.js?ver=1.5.1"></script> | |
| 4089 | +<script id="wpmss-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/wpmss/wpmss.min.js?ver=1708979088"></script> | |
| 4090 | +<script id="wpcf7cf-scripts-js-extra"> | |
| 4091 | +var wpcf7cf_global_settings = {"ajaxurl":"https://chum.carrieresante.gouv.qc.ca/wp-admin/admin-ajax.php"}; | |
| 4092 | +//# sourceURL=wpcf7cf-scripts-js-extra | |
| 4093 | +</script> | |
| 4094 | +<script id="wpcf7cf-scripts-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/cf7-conditional-fields/js/scripts.js?ver=2.7.8"></script> | |
| 4095 | +<script id="google-recaptcha-js" src="https://www.google.com/recaptcha/api.js?render=6LeEyacoAAAAAFzI4jY6030tift5n1S0tecQWMkd&ver=3.0"></script> | |
| 4096 | +<script id="wp-polyfill-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0"></script> | |
| 4097 | +<script id="wpcf7-recaptcha-js-before"> | |
| 4098 | +var wpcf7_recaptcha = { | |
| 4099 | + "sitekey": "6LeEyacoAAAAAFzI4jY6030tift5n1S0tecQWMkd", | |
| 4100 | + "actions": { | |
| 4101 | + "homepage": "homepage", | |
| 4102 | + "contactform": "contactform" | |
| 4103 | + } | |
| 4104 | +}; | |
| 4105 | +//# sourceURL=wpcf7-recaptcha-js-before | |
| 4106 | +</script> | |
| 4107 | +<script id="wpcf7-recaptcha-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/contact-form-7/modules/recaptcha/index.js?ver=6.1.6"></script> | |
| 4108 | +<script id="ebor-parallax-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/parallax.js?ver=10.5.21"></script> | |
| 4109 | +<script id="ebor-isotope-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/isotope.js?ver=10.5.21"></script> | |
| 4110 | +<script id="final-countdown-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/final-countdown.js?ver=10.5.21"></script> | |
| 4111 | +<script id="flickity-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/flickity.js?ver=10.5.21"></script> | |
| 4112 | +<script id="granim-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/granim.js?ver=10.5.21"></script> | |
| 4113 | +<script id="smooth-scroll-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/smooth-scroll.js?ver=10.5.21"></script> | |
| 4114 | +<script id="spectragram-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/spectragram.js?ver=10.5.21"></script> | |
| 4115 | +<script id="twitter-post-fetcher-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/twitter-post-fetcher.js?ver=10.5.21"></script> | |
| 4116 | +<script id="ytplayer-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/ytplayer.js?ver=10.5.21"></script> | |
| 4117 | +<script id="easy-pie-chart-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/easy-pie-chart.js?ver=10.5.21"></script> | |
| 4118 | +<script id="steps-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/steps.js?ver=10.5.21"></script> | |
| 4119 | +<script id="lightbox-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/lightbox.js?ver=10.5.21"></script> | |
| 4120 | +<script id="ebor-scripts-wp-js-extra"> | |
| 4121 | +var stack_data = {"access_token":"replaceWithYourOwn","client_id":"replaceWithYourOwn","typed_speed":"100","map_marker":"https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/img/mapmarker.png","map_marker_title":"Stack","lightbox_text":"Image %1 of %2"}; | |
| 4122 | +//# sourceURL=ebor-scripts-wp-js-extra | |
| 4123 | +</script> | |
| 4124 | +<script id="ebor-scripts-wp-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/scripts_wp.js?ver=10.5.21"></script> | |
| 4125 | +<script id="ebor-scripts-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/js/scripts.js?ver=10.5.21"></script> | |
| 4126 | +<script id="wp-job-manager-job-application-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager/assets/dist/js/job-application.js?ver=a2e73d680f0b4392373b"></script> | |
| 4127 | +<script id="wp-emoji-settings" type="application/json"> | |
| 4128 | +{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://chum.carrieresante.gouv.qc.ca/wp-includes/js/wp-emoji-release.min.js?ver=7.0.4"}} | |
| 4129 | +</script> | |
| 4130 | +<script type="module"> | |
| 4131 | +/*! This file is auto-generated */ | |
| 4132 | +var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))}); | |
| 4133 | +//# sourceURL=https://chum.carrieresante.gouv.qc.ca/wp-includes/js/wp-emoji-loader.min.js | |
| 4134 | +</script> | |
| 4135 | +<script></script></body> | |
| 4136 | +</html> | |
| 4137 | +<!-- Cached by WP-Optimize (gzip) - https://teamupdraft.com/wp-optimize/ - Last modified: 18 August 2026 21h07 (America/Toronto UTC:-5) --> | |
added
tests/fixtures/chum/210bc7e9274ae521ae25.html
+3112 −0
@@ -0,0 +1,4155 @@ | ||
| 1 | +<!doctype html> | |
| 2 | +<html lang="fr-FR"> | |
| 3 | + | |
| 4 | +<head> | |
| 5 | + <meta charset="UTF-8"> | |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| 7 | + <meta http-equiv="X-UA-Compatible" content="IE=edge, IE=11, IE=10"> | |
| 8 | + <link rel="pingback" href="https://chum.carrieresante.gouv.qc.ca/xmlrpc.php" /> | |
| 9 | + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> | |
| 10 | +<link rel="alternate" hreflang="fr" href="https://chum.carrieresante.gouv.qc.ca/poste/prepose-e-en-retraitement-des-dispositifs-medicaux-2/" /> | |
| 11 | +<link rel="alternate" hreflang="x-default" href="https://chum.carrieresante.gouv.qc.ca/poste/prepose-e-en-retraitement-des-dispositifs-medicaux-2/" /> | |
| 12 | +<script id="cookieyes" type="text/javascript" src="https://cdn-cookieyes.com/client_data/a02c54dd1258cab5a44db8ca534bda4c/script.js"></script> | |
| 13 | + <!-- This site is optimized with the Yoast SEO plugin v27.9 - https://yoast.com/product/yoast-seo-wordpress/ --> | |
| 14 | + <title>Préposé(e) en retraitement des dispositifs médicaux - CHUM</title> | |
| 15 | + <link rel="canonical" href="https://chum.carrieresante.gouv.qc.ca/poste/prepose-e-en-retraitement-des-dispositifs-medicaux-2/" /> | |
| 16 | + <meta property="og:locale" content="fr_FR" /> | |
| 17 | + <meta property="og:type" content="article" /> | |
| 18 | + <meta property="og:title" content="Préposé(e) en retraitement des dispositifs médicaux - CHUM" /> | |
| 19 | + <meta property="og:description" content="Mandat Le CHUM est un hôpital universitaire à la fois innovant et humain, au service des patient(e)s et du réseau. Il offre..." /> | |
| 20 | + <meta property="og:url" content="https://chum.carrieresante.gouv.qc.ca/poste/prepose-e-en-retraitement-des-dispositifs-medicaux-2/" /> | |
| 21 | + <meta property="og:site_name" content="CHUM" /> | |
| 22 | + <meta property="article:modified_time" content="2026-08-10T19:10:10+00:00" /> | |
| 23 | + <meta name="twitter:card" content="summary_large_image" /> | |
| 24 | + <meta name="twitter:label1" content="Durée de lecture estimée" /> | |
| 25 | + <meta name="twitter:data1" content="3 minutes" /> | |
| 26 | + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/prepose-e-en-retraitement-des-dispositifs-medicaux-2\/","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/prepose-e-en-retraitement-des-dispositifs-medicaux-2\/","name":"Préposé(e) en retraitement des dispositifs médicaux - CHUM","isPartOf":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#website"},"datePublished":"2026-08-10T04:00:00+00:00","dateModified":"2026-08-10T19:10:10+00:00","breadcrumb":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/prepose-e-en-retraitement-des-dispositifs-medicaux-2\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/prepose-e-en-retraitement-des-dispositifs-medicaux-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/poste\/prepose-e-en-retraitement-des-dispositifs-medicaux-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/chum.carrieresante.gouv.qc.ca\/"},{"@type":"ListItem","position":2,"name":"Préposé(e) en retraitement des dispositifs médicaux"}]},{"@type":"WebSite","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#website","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/","name":"Makila.ai","description":"Carrière en santé","publisher":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/chum.carrieresante.gouv.qc.ca\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#organization","name":"Services Makila inc.","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#\/schema\/logo\/image\/","url":"https:\/\/chum.carrieresante.gouv.qc.ca\/wp-content\/uploads\/2020\/10\/Logo-Makila-Dark-150.png","contentUrl":"https:\/\/chum.carrieresante.gouv.qc.ca\/wp-content\/uploads\/2020\/10\/Logo-Makila-Dark-150.png","width":150,"height":43,"caption":"Services Makila inc."},"image":{"@id":"https:\/\/chum.carrieresante.gouv.qc.ca\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/makila-ai\/"]}]}</script> | |
| 27 | + <!-- / Yoast SEO plugin. --> | |
| 28 | + | |
| 29 | + | |
| 30 | +<link rel='dns-prefetch' href='//static.addtoany.com' /> | |
| 31 | +<link rel='dns-prefetch' href='//code.jquery.com' /> | |
| 32 | +<link rel='dns-prefetch' href='//use.fontawesome.com' /> | |
| 33 | +<link rel='dns-prefetch' href='//fonts.googleapis.com' /> | |
| 34 | +<link href='https://fonts.gstatic.com' crossorigin rel='preconnect' /> | |
| 35 | +<link rel="alternate" type="application/rss+xml" title="CHUM » Flux" href="https://chum.carrieresante.gouv.qc.ca/feed/" /> | |
| 36 | +<link rel="alternate" type="application/rss+xml" title="CHUM » Flux des commentaires" href="https://chum.carrieresante.gouv.qc.ca/comments/feed/" /> | |
| 37 | +<link rel="alternate" type="application/rss+xml" title="CHUM » Préposé(e) en retraitement des dispositifs médicaux Flux des commentaires" href="https://chum.carrieresante.gouv.qc.ca/poste/prepose-e-en-retraitement-des-dispositifs-medicaux-2/feed/" /> | |
| 38 | +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://chum.carrieresante.gouv.qc.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fprepose-e-en-retraitement-des-dispositifs-medicaux-2%2F" /> | |
| 39 | +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://chum.carrieresante.gouv.qc.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fchum.carrieresante.gouv.qc.ca%2Fposte%2Fprepose-e-en-retraitement-des-dispositifs-medicaux-2%2F&format=xml" /> | |
| 40 | +<style id="wp-img-auto-sizes-contain-inline-css"> | |
| 41 | +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} | |
| 42 | +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */ | |
| 43 | +</style> | |
| 44 | +<link rel='stylesheet' id='reusablec-block-css-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/reusable-content-blocks/includes/css/reusablec-block.css?ver=7.0.4' media='all' /> | |
| 45 | +<style id="wp-emoji-styles-inline-css"> | |
| 46 | + | |
| 47 | + img.wp-smiley, img.emoji { | |
| 48 | + display: inline !important; | |
| 49 | + border: none !important; | |
| 50 | + box-shadow: none !important; | |
| 51 | + height: 1em !important; | |
| 52 | + width: 1em !important; | |
| 53 | + margin: 0 0.07em !important; | |
| 54 | + vertical-align: -0.1em !important; | |
| 55 | + background: none !important; | |
| 56 | + padding: 0 !important; | |
| 57 | + } | |
| 58 | +/*# sourceURL=wp-emoji-styles-inline-css */ | |
| 59 | +</style> | |
| 60 | +<style id="wp-block-library-inline-css"> | |
| 61 | +:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} | |
| 62 | +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */ | |
| 63 | +</style> | |
| 64 | +<style id="classic-theme-styles-inline-css"> | |
| 65 | +/*! This file is auto-generated */ | |
| 66 | +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} | |
| 67 | +/*# sourceURL=/wp-includes/css/classic-themes.min.css */ | |
| 68 | +</style> | |
| 69 | +<style id="wp-block-styles-placeholder-inline-css"> | |
| 70 | +:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the block styles printed at wp_footer." } | |
| 71 | +/*# sourceURL=wp-block-styles-placeholder-inline-css */ | |
| 72 | +</style> | |
| 73 | +<style id="font-awesome-svg-styles-default-inline-css"> | |
| 74 | +.svg-inline--fa { | |
| 75 | + display: inline-block; | |
| 76 | + height: 1em; | |
| 77 | + overflow: visible; | |
| 78 | + vertical-align: -.125em; | |
| 79 | +} | |
| 80 | +/*# sourceURL=font-awesome-svg-styles-default-inline-css */ | |
| 81 | +</style> | |
| 82 | +<link rel='stylesheet' id='font-awesome-svg-styles-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/font-awesome/v6.4.2/css/svg-with-js.css' media='all' /> | |
| 83 | +<style id="font-awesome-svg-styles-inline-css"> | |
| 84 | + .wp-block-font-awesome-icon svg::before, | |
| 85 | + .wp-rich-text-font-awesome-icon svg::before {content: unset;} | |
| 86 | +/*# sourceURL=font-awesome-svg-styles-inline-css */ | |
| 87 | +</style> | |
| 88 | +<style id="wp-global-styles-placeholder-inline-css"> | |
| 89 | +:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the global-styles printed at wp_footer." } | |
| 90 | +/*# sourceURL=wp-global-styles-placeholder-inline-css */ | |
| 91 | +</style> | |
| 92 | +<link rel='stylesheet' id='contact-form-7-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.6' media='all' /> | |
| 93 | +<link rel='stylesheet' id='select2-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager/assets/lib/select2/select2.min.css?ver=4.0.10' media='all' /> | |
| 94 | +<link rel='stylesheet' id='wp-job-manager-frontend-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager/assets/dist/css/frontend.css?ver=dfd3b8d2ce68f47df57d' media='all' /> | |
| 95 | +<link rel='stylesheet' id='wpml-legacy-horizontal-list-0-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/sitepress-multilingual-cms/templates/language-switchers/legacy-list-horizontal/style.min.css?ver=1' media='all' /> | |
| 96 | +<link rel='stylesheet' id='wpml-menu-item-0-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/sitepress-multilingual-cms/templates/language-switchers/menu-item/style.min.css?ver=1' media='all' /> | |
| 97 | +<link rel='stylesheet' id='job-alerts-frontend-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager-alerts/assets/dist/css/frontend.css?ver=3.2.0' media='all' /> | |
| 98 | +<link rel='stylesheet' id='job-alerts-frontend-default-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager-alerts/assets/dist/css/frontend.default.css?ver=3.2.0' media='all' /> | |
| 99 | +<link rel='stylesheet' id='jquery-ui-css' href='//code.jquery.com/ui/1.13.3/themes/smoothness/jquery-ui.min.css?ver=1.13.3' media='all' /> | |
| 100 | +<link rel='stylesheet' id='jm-application-deadline-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/wp-job-manager-application-deadline/assets/dist/css/frontend.css?ver=1.3.0' media='' /> | |
| 101 | +<link rel='stylesheet' id='stack-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style.css?ver=7.0.4' media='all' /> | |
| 102 | +<link rel='stylesheet' id='stack-child-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack-child/style.css?ver=10.5.21' media='all' /> | |
| 103 | +<link rel='stylesheet' id='font-awesome-official-css' href='https://use.fontawesome.com/releases/v6.4.2/css/all.css' media='all' integrity="sha384-blOohCVdhjmtROpu8+CfTnUWham9nkX7P7OZQMst+RUnhtoY/9qemFAkIKOYxDI3" crossorigin="anonymous" /> | |
| 104 | +<link rel='stylesheet' id='addtoany-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/add-to-any/addtoany.min.css?ver=1.16' media='all' /> | |
| 105 | +<link rel='stylesheet' id='cf7cf-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/cf7-conditional-fields/style.css?ver=2.7.8' media='all' /> | |
| 106 | +<link rel='stylesheet' id='ebor-google-font-css' href='//fonts.googleapis.com/css?family=Lato%3A200%2C300%2C400%2C400i%2C500%2C600%2C700%7CMerriweather%3A300%2C300i%7CMaterial+Icons&ver=10.5.21' media='all' /> | |
| 107 | +<link rel='stylesheet' id='bootstrap-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/bootstrap.css?ver=10.5.21' media='all' /> | |
| 108 | +<link rel='stylesheet' id='ebor-icons-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/icons.css?ver=10.5.21' media='all' /> | |
| 109 | +<link rel='stylesheet' id='ebor-plugins-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/plugins.css?ver=10.5.21' media='all' /> | |
| 110 | +<link rel='stylesheet' id='ebor-theme-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/theme.css?ver=10.5.21' media='all' /> | |
| 111 | +<link rel='stylesheet' id='ebor-style-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack-child/style.css?ver=10.5.21' media='all' /> | |
| 112 | +<style id="ebor-style-inline-css"> | |
| 113 | + | |
| 114 | + .btn--primary .btn__text, .btn--primary:visited .btn__text { | |
| 115 | + color: #000000; | |
| 116 | + } | |
| 117 | + input[type].btn--primary, | |
| 118 | + .pos-fixed.bar--transparent.bg--primary, | |
| 119 | + .ebor-cart-count, .woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover { | |
| 120 | + background: #16375e; | |
| 121 | + } | |
| 122 | + .pos-fixed.bar--transparent.bg--secondary { | |
| 123 | + background: #FAFAFA; | |
| 124 | + } | |
| 125 | + .pos-fixed.bar--transparent.bg--dark { | |
| 126 | + background: #252525; | |
| 127 | + } | |
| 128 | + .pos-fixed.bar--transparent.bg--primary-1 { | |
| 129 | + background: #34acaa; | |
| 130 | + } | |
| 131 | + .bg--white h1, .bg--white h2, .bg--white h3, .bg--white h4, .bg--white h5, .bg--white h6, .bg--white i, .mobile-header .cart-link { | |
| 132 | + color: #252525; | |
| 133 | + } | |
| 134 | + @media all and (max-width:767px) { | |
| 135 | + .bar.bg--dark.bar--mobile-sticky[data-scroll-class*="fixed"].pos-fixed, | |
| 136 | + .bar.bg--dark.bar--mobile-sticky[data-scroll-class*="fixed"]+.bar.pos-fixed { | |
| 137 | + background: #252525; | |
| 138 | + } | |
| 139 | + .bar.bg--secondary.bar--mobile-sticky[data-scroll-class*="fixed"].pos-fixed, | |
| 140 | + .bar.bg--secondary.bar--mobile-sticky[data-scroll-class*="fixed"]+.bar.pos-fixed { | |
| 141 | + background: #FAFAFA; | |
| 142 | + } | |
| 143 | + } | |
| 144 | + .thumbnails-slider .thumbnail-trigger.active img { | |
| 145 | + border: 1px solid #16375e; | |
| 146 | + } | |
| 147 | + .menu-horizontal > li > a, .menu-horizontal > li > span, .menu-horizontal > li > .modal-instance > .modal-trigger { | |
| 148 | + font-size: 1em; | |
| 149 | + } | |
| 150 | + .woocommerce #respond input#submit.alt, | |
| 151 | + .woocommerce a.button.alt, | |
| 152 | + .woocommerce button.button.alt, | |
| 153 | + .woocommerce input.button.alt, | |
| 154 | + .woocommerce #respond input#submit, | |
| 155 | + .woocommerce a.button, | |
| 156 | + .woocommerce button.button, | |
| 157 | + .woocommerce input.button { | |
| 158 | + background: #16375e; | |
| 159 | + color: #fff; | |
| 160 | + transition: 0.1s linear; | |
| 161 | + } | |
| 162 | + .woocommerce #respond input#submit.alt:hover, | |
| 163 | + .woocommerce a.button.alt:hover, | |
| 164 | + .woocommerce button.button.alt:hover, | |
| 165 | + .woocommerce input.button.alt:hover, | |
| 166 | + .woocommerce #respond input#submit:hover, | |
| 167 | + .woocommerce a.button:hover, | |
| 168 | + .woocommerce button.button:hover, | |
| 169 | + .woocommerce input.button:hover { | |
| 170 | + color: #fff; | |
| 171 | + opacity: 0.9; | |
| 172 | + background: #16375e; | |
| 173 | + transform: translate3d(0, -2px, 0); | |
| 174 | + -webkit-transform: translate3d(0, -2px, 0); | |
| 175 | + } | |
| 176 | + | |
| 177 | + .menu-horizontal > li:not(:hover) > a, .menu-horizontal > li:not(:hover) > span, | |
| 178 | + .menu-horizontal > li:not(:hover) > .modal-instance > .modal-trigger { | |
| 179 | + opacity: 0.85 | |
| 180 | + } | |
| 181 | + .menu-vertical li:not(:hover):not(.dropdown--active) { | |
| 182 | + opacity: .75; | |
| 183 | + } | |
| 184 | + | |
| 185 | +/*# sourceURL=ebor-style-inline-css */ | |
| 186 | +</style> | |
| 187 | +<link rel='stylesheet' id='ebor-iconsmind-css' href='https://chum.carrieresante.gouv.qc.ca/wp-content/themes/stack/style/css/iconsmind.css?ver=10.5.21' media='all' /> | |
| 188 | +<link rel='stylesheet' id='font-awesome-official-v4shim-css' href='https://use.fontawesome.com/releases/v6.4.2/css/v4-shims.css' media='all' integrity="sha384-IqMDcR2qh8kGcGdRrxwop5R2GiUY5h8aDR/LhYxPYiXh3sAAGGDkFvFqWgFvTsTd" crossorigin="anonymous" /> | |
| 189 | +<script id="addtoany-core-js-before"> | |
| 190 | +window.a2a_config=window.a2a_config||{};a2a_config.callbacks=[];a2a_config.overlays=[];a2a_config.templates={};a2a_localize = { | |
| 191 | + Share: "Partager", | |
| 192 | + Save: "Enregistrer", | |
| 193 | + Subscribe: "S'abonner", | |
| 194 | + Email: "E-mail", | |
| 195 | + Bookmark: "Marque-page", | |
| 196 | + ShowAll: "Montrer tout", | |
| 197 | + ShowLess: "Montrer moins", | |
| 198 | + FindServices: "Trouver des service(s)", | |
| 199 | + FindAnyServiceToAddTo: "Trouver instantanément des services à ajouter à", | |
| 200 | + PoweredBy: "Propulsé par", | |
| 201 | + ShareViaEmail: "Partager par e-mail", | |
| 202 | + SubscribeViaEmail: "S’abonner par e-mail", | |
| 203 | + BookmarkInYourBrowser: "Ajouter un signet dans votre navigateur", | |
| 204 | + BookmarkInstructions: "Appuyez sur Ctrl+D ou \u2318+D pour mettre cette page en signet", | |
| 205 | + AddToYourFavorites: "Ajouter à vos favoris", | |
| 206 | + SendFromWebOrProgram: "Envoyer depuis n’importe quelle adresse e-mail ou logiciel e-mail", | |
| 207 | + EmailProgram: "Programme d’e-mail", | |
| 208 | + More: "Plus…", | |
| 209 | + ThanksForSharing: "Merci de partager !", | |
| 210 | + ThanksForFollowing: "Merci de nous suivre !" | |
| 211 | +}; | |
| 212 | + | |
| 213 | + | |
| 214 | +//# sourceURL=addtoany-core-js-before | |
| 215 | +</script> | |
| 216 | +<script id="addtoany-core-js" defer src="https://static.addtoany.com/menu/page.js"></script> | |
| 217 | +<script id="jquery-core-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script> | |
| 218 | +<script id="jquery-migrate-js" src="https://chum.carrieresante.gouv.qc.ca/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script> | |
| 219 | +<script id="addtoany-jquery-js" defer src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/add-to-any/addtoany.min.js?ver=1.1"></script> | |
| 220 | +<script id="wpml-browser-redirect-js-extra"> | |
| 221 | +var wpml_browser_redirect_params = {"pageLanguage":"fr","languageUrls":{"fr_fr":"https://chum.carrieresante.gouv.qc.ca/poste/prepose-e-en-retraitement-des-dispositifs-medicaux-2/","fr":"https://chum.carrieresante.gouv.qc.ca/poste/prepose-e-en-retraitement-des-dispositifs-medicaux-2/"},"cookie":{"name":"_icl_visitor_lang_js","domain":"chum.carrieresante.gouv.qc.ca","path":"/","expiration":24}}; | |
| 222 | +//# sourceURL=wpml-browser-redirect-js-extra | |
| 223 | +</script> | |
| 224 | +<script id="wpml-browser-redirect-js" src="https://chum.carrieresante.gouv.qc.ca/wp-content/plugins/sitepress-multilingual-cms/dist/js/browser-redirect/app.js?ver=495000"></script> | |
| 225 | +<script></script><link rel="https://api.w.org/" href="https://chum.carrieresante.gouv.qc.ca/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://chum.carrieresante.gouv.qc.ca/wp-json/wp/v2/job-listings/51313" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://chum.carrieresante.gouv.qc.ca/xmlrpc.php?rsd" /> | |
| 226 | +<meta name="generator" content="WordPress 7.0.4" /> | |
| 227 | +<link rel='shortlink' href='https://chum.carrieresante.gouv.qc.ca/?p=51313' /> | |
| 228 | +<meta name="generator" content="WPML ver:4.9.5 stt:1,4;" /> | |
| 229 | +<meta name="generator" content="Elementor 4.1.4; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"> | |
| 230 | + <style> | |
| 231 | + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 232 | + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 233 | + background-image: none !important; | |
| 234 | + } | |
| 235 | + @media screen and (max-height: 1024px) { | |
| 236 | + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 237 | + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 238 | + background-image: none !important; | |
| 239 | + } | |
| 240 | + } | |
| 241 | + @media screen and (max-height: 640px) { | |
| 242 | + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 243 | + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 244 | + background-image: none !important; | |
| 245 | + } | |
| 246 | + } | |
| 247 | + </style> | |
| 248 | + <meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/> | |
| 249 | +<script type="text/javascript" id="sns_global_scripts_in_head">// JavaScript to handle the "Select All" for Statut De L'Emploi | |
| 250 | +jQuery(document).ready(function($) { | |
| 251 | + $('#select-all-StatutDeLEmploi').click(function(e) { | |
| 252 | + e.preventDefault(); | |
| 253 | + var checkboxGroup = $(this).closest('form').find('[name="StatutDeLEmploi[]"]'); | |
| 254 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 255 | + checkboxGroup.prop('checked', isChecked); | |
| 256 | + if (isChecked) { | |
| 257 | + $(this).text('Déselectionner tout'); | |
| 258 | + } else { | |
| 259 | + $(this).text('Sélectionner tout'); | |
| 260 | + } | |
| 261 | + }); | |
| 262 | + | |
| 263 | + $('[name="StatutDeLEmploi[]"]').change(function() { | |
| 264 | + var allChecked = $('[name="StatutDeLEmploi[]"]:checked').length === $('[name="StatutDeLEmploi[]"]').length; | |
| 265 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 266 | + $('#select-all-StatutDeLEmploi').text(linkText); | |
| 267 | + }); | |
| 268 | +}); | |
| 269 | +// JavaScript to handle the "Select All" for Territoires | |
| 270 | +jQuery(document).ready(function($) { | |
| 271 | + $('#select-all-Territoires').click(function(e) { | |
| 272 | + e.preventDefault(); | |
| 273 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires[]"]'); | |
| 274 | + | |
| 275 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 276 | + checkboxGroup.prop('checked', isChecked); | |
| 277 | + | |
| 278 | + if (isChecked) { | |
| 279 | + $(this).text('Déselectionner tout'); | |
| 280 | + } else { | |
| 281 | + $(this).text('Sélectionner tout'); | |
| 282 | + } | |
| 283 | + }); | |
| 284 | + | |
| 285 | + | |
| 286 | + $('[name="Territoires[]"]').change(function() { | |
| 287 | + var allChecked = $('[name="Territoires[]"]:checked').length === $('[name="Territoires[]"]').length; | |
| 288 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 289 | + $('#select-all-Territoires').text(linkText); | |
| 290 | + }); | |
| 291 | +}); | |
| 292 | +// JavaScript to handle the "Select All" for Territoires2 | |
| 293 | +jQuery(document).ready(function($) { | |
| 294 | + $('#select-all-Territoires2').click(function(e) { | |
| 295 | + e.preventDefault(); // Prevent the default link behavior | |
| 296 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires2[]"]'); | |
| 297 | + | |
| 298 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 299 | + checkboxGroup.prop('checked', isChecked); | |
| 300 | + | |
| 301 | + if (isChecked) { | |
| 302 | + $(this).text('Déselectionner tout'); | |
| 303 | + } else { | |
| 304 | + $(this).text('Sélectionner tout'); | |
| 305 | + } | |
| 306 | + }); | |
| 307 | + | |
| 308 | + $('[name="Territoires2[]"]').change(function() { | |
| 309 | + var allChecked = $('[name="Territoires2[]"]:checked').length === $('[name="Territoires2[]"]').length; | |
| 310 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 311 | + $('#select-all-Territoires2').text(linkText); | |
| 312 | + }); | |
| 313 | +}); | |
| 314 | + | |
| 315 | +// JavaScript to handle the "Select All" for Territoires3 | |
| 316 | +jQuery(document).ready(function($) { | |
| 317 | + $('#select-all-Territoires3').click(function(e) { | |
| 318 | + e.preventDefault(); // Prevent the default link behavior | |
| 319 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires3[]"]'); | |
| 320 | + | |
| 321 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 322 | + checkboxGroup.prop('checked', isChecked); | |
| 323 | + | |
| 324 | + if (isChecked) { | |
| 325 | + $(this).text('Déselectionner tout'); | |
| 326 | + } else { | |
| 327 | + $(this).text('Sélectionner tout'); | |
| 328 | + } | |
| 329 | + }); | |
| 330 | + | |
| 331 | + $('[name="Territoires3[]"]').change(function() { | |
| 332 | + var allChecked = $('[name="Territoires3[]"]:checked').length === $('[name="Territoires3[]"]').length; | |
| 333 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 334 | + $('#select-all-Territoires3').text(linkText); | |
| 335 | + }); | |
| 336 | +}); | |
| 337 | + | |
| 338 | +// JavaScript to handle the "Select All" for Territoires4 | |
| 339 | +jQuery(document).ready(function($) { | |
| 340 | + $('#select-all-Territoires4').click(function(e) { | |
| 341 | + e.preventDefault(); // Prevent the default link behavior | |
| 342 | + var checkboxGroup = $(this).closest('form').find('[name="Territoires4[]"]'); | |
| 343 | + | |
| 344 | + var isChecked = !checkboxGroup.prop('checked'); | |
| 345 | + checkboxGroup.prop('checked', isChecked); | |
| 346 | + | |
| 347 | + if (isChecked) { | |
| 348 | + $(this).text('Déselectionner tout'); | |
| 349 | + } else { | |
| 350 | + $(this).text('Sélectionner tout'); | |
| 351 | + } | |
| 352 | + }); | |
| 353 | + | |
| 354 | + $('[name="Territoires4[]"]').change(function() { | |
| 355 | + var allChecked = $('[name="Territoires4[]"]:checked').length === $('[name="Territoires4[]"]').length; | |
| 356 | + var linkText = allChecked ? 'Déselectionner tout' : 'Sélectionner tout'; | |
| 357 | + $('#select-all-Territoires4').text(linkText); | |
| 358 | + }); | |
| 359 | +}); | |
| 360 | + | |
| 361 | +// JavaScript to set the checkboxes 'StatutDeLEmploi' and 'Categories' to be required. | |
| 362 | +document.addEventListener('wpcf7submit', function(event) { | |
| 363 | + if ('StatutDeLEmploi' in event.detail.inputs) { | |
| 364 | + if (event.detail.inputs['StatutDeLEmploi'].checked === false) { | |
| 365 | + alert('Pour vous abonner, vous devez sélectionner au moins un élément de la section \"statut de l\'emploi\"'); | |
| 366 | + event.preventDefault(); | |
| 367 | + } | |
| 368 | + } | |
| 369 | +}, false); | |
| 370 | +//Renommer Rechercher des offres d’emploi par Filtrer les résultats | |
| 371 | +jQuery(document).ready(function($) { | |
| 372 | + var submitButton = $('.search_submit input[type="submit"]'); | |
| 373 | + submitButton.attr('value', 'Filtrer les résultats'); | |
| 374 | +}); | |
| 375 | + | |
| 376 | +// Get all text nodes in the document | |
| 377 | +function getAllTextNodes(element) { | |
| 378 | + const textNodes = []; | |
| 379 | + if (element.nodeType === Node.TEXT_NODE) { | |
| 380 | + textNodes.push(element); | |
| 381 | + } else { | |
| 382 | + const children = element.childNodes; | |
| 383 | + for (let i = 0; i < children.length; i++) { | |
| 384 | + textNodes.push(...getAllTextNodes(children[i])); | |
| 385 | + } | |
| 386 | + } | |
| 387 | + return textNodes; | |
| 388 | +} | |
| 389 | + | |
| 390 | +//remove overlay from hero slider | |
| 391 | +document.addEventListener('DOMContentLoaded', function () { | |
| 392 | + var elements = document.querySelectorAll('.imagebg[data-overlay="4"]'); | |
| 393 | + elements.forEach(function (element) { | |
| 394 | + element.removeAttribute('data-overlay'); | |
| 395 | + }); | |
| 396 | +}); | |
| 397 | + | |
| 398 | +window.addEventListener('DOMContentLoaded', function () { | |
| 399 | +document.querySelector('.scroll-right').onclick = () => { | |
| 400 | + document.querySelector('.job-listing-wrapper').scrollBy({ | |
| 401 | + left: 300, | |
| 402 | + behavior: 'smooth' | |
| 403 | + }); | |
| 404 | +}; | |
| 405 | + | |
| 406 | +document.querySelector('.scroll-left').onclick = () => { | |
| 407 | + document.querySelector('.job-listing-wrapper').scrollBy({ | |
| 408 | + left: -300, | |
| 409 | + behavior: 'smooth' | |
| 410 | + }); | |
| 411 | +}; | |
| 412 | + | |
| 413 | +}); | |
| 414 | + | |
| 415 | +document.addEventListener('DOMContentLoaded', function() { | |
| 416 | + document.querySelectorAll('strong').forEach(function(el) { | |
| 417 | + if (el.textContent.trim() === 'Partagez :') { | |
| 418 | + el.classList.add('is-partagez'); | |
| 419 | + } | |
| 420 | + }); | |
| 421 | +}); | |
| 422 | +</script><link rel="icon" href="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-32x32.png" sizes="32x32" /> | |
| 423 | +<link rel="icon" href="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-192x192.png" sizes="192x192" /> | |
| 424 | +<link rel="apple-touch-icon" href="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-180x180.png" /> | |
| 425 | +<meta name="msapplication-TileImage" content="https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/04/cropped-cropped-quebec-mini-logo-270x270.png" /> | |
| 426 | +<style id="wp-custom-css"> | |
| 427 | +body { | |
| 428 | + font-size: 1.15em; | |
| 429 | + font-weight: 400; | |
| 430 | + color: #000000; | |
| 431 | +} | |
| 432 | + | |
| 433 | +p, .p { | |
| 434 | + font-size: 1.1em; | |
| 435 | + line-height: 1.4em; | |
| 436 | + font-weight: 500; | |
| 437 | + margin-bottom: 1em; | |
| 438 | +} | |
| 439 | + | |
| 440 | +b, .b, strong, .strong { | |
| 441 | + font-weight: 700; | |
| 442 | +} | |
| 443 | + | |
| 444 | +a, a:hover { | |
| 445 | + color: #004071; | |
| 446 | + text-decoration-line: none; | |
| 447 | +} | |
| 448 | + | |
| 449 | +p a, span a, label a { | |
| 450 | + text-decoration-line: none; | |
| 451 | +} | |
| 452 | + | |
| 453 | +.wpb_wrapper a { | |
| 454 | + color: #87CEEB; | |
| 455 | + text-decoration-line: none; | |
| 456 | +} | |
| 457 | + | |
| 458 | +ul > li { | |
| 459 | + font-size: 1.1em; | |
| 460 | + line-height: 1.2em; | |
| 461 | + list-style: disc; | |
| 462 | + list-style-position: outside; | |
| 463 | + margin-left: 20px; | |
| 464 | + padding-left: 0px; | |
| 465 | + padding-bottom: 10px; | |
| 466 | +} | |
| 467 | + | |
| 468 | +.wpb_text_column ul li { | |
| 469 | + list-style-type: disc; | |
| 470 | + list-style-position: outside; | |
| 471 | + margin-left: 5px; | |
| 472 | +} | |
| 473 | + | |
| 474 | +.post-content ul:not(.tabs-content):not(.slides), .wpb_text_column ul, ul.accordion ul, ul.tabs-content ul { | |
| 475 | + list-style-type: disc; | |
| 476 | + list-style-position: outside; | |
| 477 | + margin-left: 25px; | |
| 478 | +} | |
| 479 | + | |
| 480 | +h1, .h1 { | |
| 481 | + font-size: 2.6em; | |
| 482 | + line-height: 1.6em; | |
| 483 | + color: #16375E; | |
| 484 | + font-weight: bold !important; | |
| 485 | +} | |
| 486 | + | |
| 487 | +h2, .h2 { | |
| 488 | + font-size: 40px; | |
| 489 | + line-height: 1.4em; | |
| 490 | + font-weight:bold; | |
| 491 | +} | |
| 492 | + | |
| 493 | +h3, .h3 { | |
| 494 | + font-size: 1.3em; | |
| 495 | + line-height: 1.4em; | |
| 496 | + font-weight: 400; | |
| 497 | + margin-bottom: 0.5em; | |
| 498 | +} | |
| 499 | + | |
| 500 | +h4, .h4 { | |
| 501 | + font-size: 1.2em; | |
| 502 | + line-height: 1em; | |
| 503 | + font-weight: 500; | |
| 504 | +} | |
| 505 | + | |
| 506 | +h5, .h5 { | |
| 507 | + font-size: 1em; | |
| 508 | + line-height: 1.3em; | |
| 509 | + font-weight: 400; | |
| 510 | +} | |
| 511 | + | |
| 512 | +.alignlefticon { | |
| 513 | + float: left; | |
| 514 | + margin: 0 10px 0 0!important; | |
| 515 | +} | |
| 516 | + | |
| 517 | +.vertitop .pos-vertical-center { | |
| 518 | + top: 195px; | |
| 519 | +} | |
| 520 | + | |
| 521 | +.vertitop-faq .pos-vertical-center { | |
| 522 | + top: 140px; | |
| 523 | +} | |
| 524 | + | |
| 525 | +/* HEADER MENU */ | |
| 526 | +/* Header horizontal menu underline */ | |
| 527 | +.menu-horizontal>li>a:hover { | |
| 528 | + border-bottom:none; | |
| 529 | +} | |
| 530 | + | |
| 531 | +.menu-horizontal li:not(:last-child) { | |
| 532 | + margin-right: 1em; | |
| 533 | +} | |
| 534 | + | |
| 535 | +@media (min-width: 990px){ | |
| 536 | + .menu-horizontal li:not(:last-child) { | |
| 537 | + margin-right: 50px; | |
| 538 | + } | |
| 539 | +} | |
| 540 | + | |
| 541 | +.header--top-bar .type--fade, .header--top-bar a { | |
| 542 | + opacity: 1; | |
| 543 | + color: red; | |
| 544 | +} | |
| 545 | + | |
| 546 | +.btn--demo .btn__text{ | |
| 547 | + border-color: #34acaa !important; | |
| 548 | + color:#fff !important; | |
| 549 | +} | |
| 550 | + | |
| 551 | +/* Header drop down menu style */ | |
| 552 | +.dropdowns--hover .dropdown:hover>.dropdown__container>.container>.row>.dropdown__content { | |
| 553 | + position:absolute; | |
| 554 | + left:400px; | |
| 555 | + border-top:3px solid #17355f; | |
| 556 | + width: auto !important; | |
| 557 | +} | |
| 558 | + | |
| 559 | +.dropdowns--hover .dropdown:hover>.dropdown__container>.container>.row>.dropdown__content a:hover{ | |
| 560 | + color: #17355f !important; | |
| 561 | +} | |
| 562 | + | |
| 563 | +.menu-vertical li { | |
| 564 | + font-size: 0.9em; | |
| 565 | + font-weight: 400; | |
| 566 | + color: #666; | |
| 567 | + list-style: none; | |
| 568 | +} | |
| 569 | + | |
| 570 | +/* WPFront bar close button */ | |
| 571 | +.wpfront-close { | |
| 572 | + border: 1px solid #000000 !important; | |
| 573 | + background-color: #ffd600 !important; | |
| 574 | + color: #000000 !important; | |
| 575 | +} | |
| 576 | + | |
| 577 | +#wpfront-notification-bar div.wpfront-close { | |
| 578 | + position: absolute; | |
| 579 | + top: 11px; | |
| 580 | + right: 10px; | |
| 581 | + font-size: 11px; | |
| 582 | + padding: 8px 4px; | |
| 583 | + -webkit-border-radius: 2px; | |
| 584 | + -moz-border-radius: 2px; | |
| 585 | + border-radius: 2px; | |
| 586 | +} | |
| 587 | + | |
| 588 | +/* HEADER HERO CENTER ELEMENTS */ | |
| 589 | +.row-fixed-width { | |
| 590 | + max-width:1170px; | |
| 591 | + margin: 0 auto; | |
| 592 | +} | |
| 593 | + | |
| 594 | +.header-titre { | |
| 595 | + color: #FFF; | |
| 596 | +} | |
| 597 | + | |
| 598 | +/* CONTENT BOX STYLING */ | |
| 599 | +.lien-boite { | |
| 600 | + background-color:#87CEEB; | |
| 601 | + margin-top: 2em; | |
| 602 | + color: #000000; | |
| 603 | + padding:10px; | |
| 604 | + | |
| 605 | +} | |
| 606 | + | |
| 607 | +.solbox { | |
| 608 | + font-size: 0.9em; | |
| 609 | + line-height: 1em; | |
| 610 | + font-weight: 400; | |
| 611 | + margin-bottom: 1em; | |
| 612 | + text-align: left; | |
| 613 | +} | |
| 614 | + | |
| 615 | +/* Logo caroussel */ | |
| 616 | +.vc_row .vc_column-gap-30 { | |
| 617 | + margin-left: -10px; | |
| 618 | + margin-right: -10px; | |
| 619 | +} | |
| 620 | + | |
| 621 | +/* Ligne titre */ | |
| 622 | +.floatClear { | |
| 623 | + clear: both; | |
| 624 | +} | |
| 625 | +#wrapper { | |
| 626 | + text-align: center; | |
| 627 | + position: relative; | |
| 628 | +} | |
| 629 | +#wrapper .line { | |
| 630 | + border-bottom: 2px solid #87CEEB; | |
| 631 | + position: absolute; | |
| 632 | + width: 100%; | |
| 633 | + top: 15px; | |
| 634 | +} | |
| 635 | +#wrapper .textbox { | |
| 636 | + position: absolute; | |
| 637 | + width: 100%; | |
| 638 | +} | |
| 639 | +#wrapper .textbox .text { | |
| 640 | + background-color: white; | |
| 641 | + margin: 0px auto; | |
| 642 | + padding: 0px 30px; | |
| 643 | + text-align: center; | |
| 644 | + display: inline; | |
| 645 | + font-size: 24px; | |
| 646 | +} | |
| 647 | + | |
| 648 | +/* Remove white bar in header on IE11 */ | |
| 649 | +.nav-container { | |
| 650 | + min-height: 0px !important; | |
| 651 | +} | |
| 652 | + | |
| 653 | +/* box shadow */ | |
| 654 | +.box-shadow { | |
| 655 | + box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.07); | |
| 656 | +} | |
| 657 | +.no-box-shadow { | |
| 658 | + box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.07); | |
| 659 | +} | |
| 660 | + | |
| 661 | +/*.wpb_wrapper .col-sm-4 .vc_column-inner { | |
| 662 | +box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.07); | |
| 663 | +} */ | |
| 664 | + | |
| 665 | +.featured-news { | |
| 666 | + padding-top: 0px; | |
| 667 | + padding-bottom: 0px; | |
| 668 | + padding-right: 0px; | |
| 669 | +} | |
| 670 | + | |
| 671 | +.feature .boxed { | |
| 672 | + padding: 20px 10px 10px 10px; | |
| 673 | +} | |
| 674 | + | |
| 675 | +/* Top image in boxes */ | |
| 676 | +.top-radius .elementor-image-box-img .vc_single_image-img img { | |
| 677 | + border-radius: 20px 20px 0 0; | |
| 678 | +} | |
| 679 | + | |
| 680 | +.wpb_single_image .vc_single_image-wrapper.vc_box_rounded, .wpb_single_image .vc_single_image-wrapper.vc_box_rounded img { | |
| 681 | + border-radius: 10px 10px 0 0; | |
| 682 | +} | |
| 683 | + | |
| 684 | +.border--round { | |
| 685 | + border-radius: 10px; | |
| 686 | +} | |
| 687 | + | |
| 688 | +/* .all-radius .wpb_single_image .vc_single_image-wrapper.vc_box_rounded, .wpb_single_image .vc_single_image-wrapper.vc_box_rounded img { | |
| 689 | +border-radius: 10px 10px 10px 10px; | |
| 690 | +box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.07); | |
| 691 | +} */ | |
| 692 | + | |
| 693 | +/* Custom Page Element */ | |
| 694 | +.vc_custom_1602515817184 { | |
| 695 | + padding-top: 20px; | |
| 696 | + padding-bottom: 20px; | |
| 697 | +} | |
| 698 | + | |
| 699 | +/* HEADER */ | |
| 700 | +/* Header Logo */ | |
| 701 | +.bar .logo { | |
| 702 | + max-height: 90px; | |
| 703 | +} | |
| 704 | +@media (min-width: 1050px) { | |
| 705 | + .bar .logo { | |
| 706 | + margin-top: -49px; | |
| 707 | + } | |
| 708 | +} | |
| 709 | +@media (max-width: 1050px) { | |
| 710 | + .bar .logo { | |
| 711 | + margin-top: -10px; | |
| 712 | + } | |
| 713 | +} | |
| 714 | +.menu-item-home { | |
| 715 | + margin-top: 9px; | |
| 716 | + margin-right: 5px; | |
| 717 | +} | |
| 718 | + | |
| 719 | +/* Header horizontal menu style */ | |
| 720 | +.bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > a, .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > span { | |
| 721 | + color:#87CEEB; | |
| 722 | +} | |
| 723 | + | |
| 724 | +.bar-1 .menu-horizontal>li>.dropdown__trigger, .bar-1 .menu-horizontal>li>a { | |
| 725 | + font-size: 18px; | |
| 726 | + line-height: 2.166666666666667em; | |
| 727 | + text-transform: none; | |
| 728 | + font-weight: 600; | |
| 729 | + letter-spacing: .5px; | |
| 730 | + color: #0067a5; | |
| 731 | +} | |
| 732 | + | |
| 733 | +.dropdown > .dropdown__trigger:after{ | |
| 734 | + font-size: 20px; | |
| 735 | + bottom: -3px; | |
| 736 | +} | |
| 737 | + | |
| 738 | +.bar-1 .menu-horizontal>li>.dropdown__trigger:hover, .bar-1 .menu-horizontal>li>a:hover { | |
| 739 | + color: #004071; | |
| 740 | +} | |
| 741 | + | |
| 742 | +.menu-horizontal>li:not(:hover)>a, .menu-horizontal>li:not(:hover)>span, .menu-horizontal>li:not(:hover)>.modal-instance>.modal-trigger { | |
| 743 | + opacity: 1; | |
| 744 | +} | |
| 745 | + | |
| 746 | + | |
| 747 | +/* Mobile Menu */ | |
| 748 | + | |
| 749 | +@media (max-width: 768px){ | |
| 750 | + .menu-horizontal>li>a:hover { | |
| 751 | + color: #34ACAA !important; | |
| 752 | + } | |
| 753 | + .menu-horizontal li { | |
| 754 | + font-size: 0.9em; | |
| 755 | + font-weight: 400; | |
| 756 | + color: #666; | |
| 757 | + list-style: none; | |
| 758 | + } | |
| 759 | + .menu-vertical li { | |
| 760 | + font-size: 1.2em; | |
| 761 | + font-weight: 400; | |
| 762 | + color: #666; | |
| 763 | + list-style: none; | |
| 764 | + } | |
| 765 | + .btn--demo { | |
| 766 | + width: 25%; | |
| 767 | + } | |
| 768 | + /* Index F-H page logo positioning */ | |
| 769 | + .vertitop .pos-vertical-center { | |
| 770 | + top: -100px; | |
| 771 | + } | |
| 772 | + /* .wp-image-6925 { | |
| 773 | + margin-bottom: 60px; | |
| 774 | + } */ | |
| 775 | + .vertitop .pos-vertical-center h1 { | |
| 776 | + padding-top: 30px; | |
| 777 | + padding-bottom: 0px; | |
| 778 | + margin-bottom: -30px; | |
| 779 | + } | |
| 780 | + .mob400 p { | |
| 781 | + font-weight: 400; | |
| 782 | + } | |
| 783 | +} | |
| 784 | + | |
| 785 | +/* Header CTA button */ | |
| 786 | +.btn--sm { | |
| 787 | + padding-top: .2em; | |
| 788 | + padding-bottom: .2em; | |
| 789 | + padding-right: 1em; | |
| 790 | + padding-left: 1em; | |
| 791 | +} | |
| 792 | + | |
| 793 | +.btn, .btn a { | |
| 794 | + border-radius: 6px; | |
| 795 | + border: none; | |
| 796 | + border-width: 1px; | |
| 797 | + font-size: inherit; | |
| 798 | + line-height: 1.85714286em; | |
| 799 | +} | |
| 800 | + | |
| 801 | +.btn .btn__text { | |
| 802 | + color: #FFF; | |
| 803 | + font-weight: 600; | |
| 804 | + font-size: 20px; | |
| 805 | + font-family:'Gotham',sans-serif; | |
| 806 | +} | |
| 807 | + | |
| 808 | +.btn--demo, .btn__text a { | |
| 809 | + color: #4a90e2; | |
| 810 | + font-weight: 400; | |
| 811 | +} | |
| 812 | + | |
| 813 | +.btn--demo, .btn--demo:visited { | |
| 814 | + background: #87CEEB; | |
| 815 | + border-color: #fff; | |
| 816 | +} | |
| 817 | + | |
| 818 | +/* Boutons CTA */ | |
| 819 | +.btn--primary, .btn--primary:visited { | |
| 820 | + color: #000000 !important; | |
| 821 | + background: transparent; | |
| 822 | + border-color: #87CEEB; | |
| 823 | +} | |
| 824 | + | |
| 825 | +.btn--primary:active { | |
| 826 | + background: #87CEEB; | |
| 827 | +} | |
| 828 | + | |
| 829 | +/* FOOTER SECTION */ | |
| 830 | +.footer-6 { | |
| 831 | + background: #004071; | |
| 832 | + padding-top: 50px; | |
| 833 | + padding-bottom: 20px; | |
| 834 | +} | |
| 835 | + | |
| 836 | +section, footer { | |
| 837 | + padding-top: 3.42857143em; | |
| 838 | + padding-bottom: 3.42857143em; | |
| 839 | +} | |
| 840 | + | |
| 841 | +/* Footer 1st column */ | |
| 842 | +.textwidget { | |
| 843 | + padding-top: 2em; | |
| 844 | + font-size: 13px; | |
| 845 | + margin-bottom: 10px; | |
| 846 | + text-align: justify; | |
| 847 | +} | |
| 848 | + | |
| 849 | +/* Footer 2nd column */ | |
| 850 | +#nav_menu-2, #nav_menu-3 { | |
| 851 | + padding-left: 60px; | |
| 852 | + margin-bottom: 60px; | |
| 853 | +} | |
| 854 | + | |
| 855 | +footer a { | |
| 856 | + font-weight: 400; | |
| 857 | +} | |
| 858 | + | |
| 859 | +footer ul:not(.list-inline):not(.slides)>li { | |
| 860 | + font-size: 14px; | |
| 861 | + line-height: 1.8em!important; | |
| 862 | +} | |
| 863 | + | |
| 864 | +footer ul li { | |
| 865 | + padding: 0px; | |
| 866 | + list-style: none; | |
| 867 | + margin-left: 5px; | |
| 868 | +} | |
| 869 | + | |
| 870 | +/* Footer 3rd column */ | |
| 871 | +#text-4 { | |
| 872 | + padding-left: 80px; | |
| 873 | +} | |
| 874 | + | |
| 875 | +h6.type--uppercase, .h6.type--uppercase { | |
| 876 | + margin-block-end: -10px; | |
| 877 | +} | |
| 878 | + | |
| 879 | +.alignlefticon { | |
| 880 | + float: none; | |
| 881 | +} | |
| 882 | + | |
| 883 | +/* Footer columns on mobile */ | |
| 884 | +@media (max-width: 768px){ | |
| 885 | + .widget_media_image img { | |
| 886 | + display: block; | |
| 887 | + margin-left: auto; | |
| 888 | + margin-right: auto; | |
| 889 | + } | |
| 890 | + #nav_menu-2, #nav_menu-3 { | |
| 891 | + display: none; | |
| 892 | + padding-left: 150px; | |
| 893 | + margin-top: 30px; | |
| 894 | + } | |
| 895 | + #text-4 h6 { | |
| 896 | + padding-left: 0px; | |
| 897 | + margin-top: 30px; | |
| 898 | + text-align: left; | |
| 899 | + } | |
| 900 | + #text-4 { | |
| 901 | + padding: 0px; | |
| 902 | + } | |
| 903 | + #text-3 .textwidget, #text-4 .textwidget { | |
| 904 | + padding-left: 0px; | |
| 905 | + text-align: left; | |
| 906 | + } | |
| 907 | +} | |
| 908 | + | |
| 909 | +/* Footer sub footer */ | |
| 910 | +.footer-stack-copyright, .menu-item-4840 ul>li { | |
| 911 | + font-size: 14px; | |
| 912 | + text-align: center; | |
| 913 | +} | |
| 914 | + | |
| 915 | +.menu-footer-menu-container>ul>li { | |
| 916 | + font-size: 14px; | |
| 917 | + display: inline; | |
| 918 | + padding: 0px 10px 0px 10px | |
| 919 | +} | |
| 920 | + | |
| 921 | +/* How to not impact header menu? */ | |
| 922 | +.menu-footer-menu, .menu-item-type-post_type:not(:last-child) { | |
| 923 | + border-right: 0px solid #bbb; | |
| 924 | +} | |
| 925 | + | |
| 926 | +.menu-footer-menu, .menu-item-type-post_type:last-child { | |
| 927 | + border-right: 0px; | |
| 928 | +} | |
| 929 | + | |
| 930 | +.vc_btn3.vc_btn3-size-lg { | |
| 931 | + font-size: 18px; | |
| 932 | + font-weight: 400; | |
| 933 | + padding-top: 16px; | |
| 934 | + padding-bottom: 20px; | |
| 935 | + padding-left: 40px; | |
| 936 | + padding-right: 40px; | |
| 937 | +} | |
| 938 | + | |
| 939 | +.vc_btn3.vc_btn3-color-orange, .vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat { | |
| 940 | + color: #000000; | |
| 941 | + background-color: #87CEEB; | |
| 942 | +} | |
| 943 | + | |
| 944 | + | |
| 945 | +/* TEMPLATE LAYOUT */ | |
| 946 | +/* 5 column layout */ | |
| 947 | +@media (min-width: 768px){ | |
| 948 | + .column5 { | |
| 949 | + width: 16%; | |
| 950 | + margin: 0 2%; | |
| 951 | + float:left; | |
| 952 | + } | |
| 953 | + .column6 { | |
| 954 | + width: 12%; | |
| 955 | + margin: 0 2%; | |
| 956 | + float:left; | |
| 957 | + } | |
| 958 | +} | |
| 959 | + | |
| 960 | +/* BLOG */ | |
| 961 | +/* Note: Grid template: loop/content-post-cards.php */ | |
| 962 | +/* Blog post font style */ | |
| 963 | +article .article__body p, article .article__body ul { | |
| 964 | + font-size: 1.1em; | |
| 965 | + line-height: 1.6em; | |
| 966 | + font-weight: 400; | |
| 967 | + color: black; | |
| 968 | +} | |
| 969 | + | |
| 970 | +.wpb_wrapper a { | |
| 971 | + color: #13223f; | |
| 972 | + text-decoration-line: none; | |
| 973 | +} | |
| 974 | + | |
| 975 | +.vc_custom_heading a, .vc_custom_heading a:focus, .vc_custom_heading a:hover, .vc_custom_heading a:visited { | |
| 976 | + font-size: 1em; | |
| 977 | + line-height: 1.3em; | |
| 978 | + font-weight: 400; | |
| 979 | + color: #13223f; | |
| 980 | + text-decoration-line: none; | |
| 981 | +} | |
| 982 | + | |
| 983 | +/* Style Most Recent Articles List */ | |
| 984 | +.sidebar li { | |
| 985 | + font-size: 1em; | |
| 986 | + line-height: 1.2em; | |
| 987 | + font-weight: 400; | |
| 988 | + padding-bottom: 10px; | |
| 989 | +} | |
| 990 | + | |
| 991 | +/* Remove pagination after 3 latest blog post on homepage */ | |
| 992 | +.nopagination .pagination { | |
| 993 | + display: none; | |
| 994 | +} | |
| 995 | + | |
| 996 | +/* Vertical Spacing in Grid view */ | |
| 997 | +.masonry__item:not(:empty) { | |
| 998 | + margin-bottom: 0px; | |
| 999 | + transform-style: preserve-3d; | |
| 1000 | +} | |
| 1001 | + | |
| 1002 | +/* Category label in Grid mode */ | |
| 1003 | +.label { | |
| 1004 | + display: inline-block; | |
| 1005 | + font-size: 9px; | |
| 1006 | + font-weight: 700; | |
| 1007 | + letter-spacing: .5px; | |
| 1008 | + color: #000; | |
| 1009 | + text-transform: uppercase; | |
| 1010 | + height: 26px; | |
| 1011 | + min-width: 65px; | |
| 1012 | + padding: 0 10px; | |
| 1013 | + text-align: center; | |
| 1014 | + border-radius: 0px 20px 20px 0px; | |
| 1015 | + position: relative; | |
| 1016 | + z-index: 3; | |
| 1017 | + top: 8.5em; | |
| 1018 | + left: 0em; | |
| 1019 | +} | |
| 1020 | +.label:not([class*='bg--']) { | |
| 1021 | + background: #87CEEB; | |
| 1022 | +} | |
| 1023 | + | |
| 1024 | +.wpcf7-form p label { | |
| 1025 | + color: #004071 !important; | |
| 1026 | + font-size:18px !important; | |
| 1027 | +} | |
| 1028 | +.label-2 { | |
| 1029 | + display: inline-block; | |
| 1030 | + font-size: 9px; | |
| 1031 | + font-weight: 700; | |
| 1032 | + letter-spacing: .5px; | |
| 1033 | + color: #fff; | |
| 1034 | + text-transform: uppercase; | |
| 1035 | + height: 26px; | |
| 1036 | + min-width: 65px; | |
| 1037 | + padding: 0 20px; | |
| 1038 | + text-align: center; | |
| 1039 | + border-radius: 0px 20px 20px 0px; | |
| 1040 | + position: relative; | |
| 1041 | + z-index: 3; | |
| 1042 | + top: -26em; | |
| 1043 | + left: 0em; | |
| 1044 | +} | |
| 1045 | + | |
| 1046 | +.label-2:not([class*='bg--']) { | |
| 1047 | + background: #87CEEB; | |
| 1048 | +} | |
| 1049 | + | |
| 1050 | +/* Hide breadcrumb in Tag page */ | |
| 1051 | +.breadcrumbs { | |
| 1052 | + display: none; | |
| 1053 | +} | |
| 1054 | +.breadcrumb--section .background-image-holder { | |
| 1055 | + height: 280px; | |
| 1056 | + background-color:#ffffff !important; | |
| 1057 | +} | |
| 1058 | + | |
| 1059 | +.team-title { | |
| 1060 | + padding-top: 30px; | |
| 1061 | + margin-top: 30px; | |
| 1062 | +} | |
| 1063 | + | |
| 1064 | +/* CONTACT FORM */ | |
| 1065 | +.titre-champ { | |
| 1066 | + font-size: 1.1em; | |
| 1067 | + line-height: 1.4em; | |
| 1068 | + font-weight: 400; | |
| 1069 | + margin-bottom: 1em; | |
| 1070 | +} | |
| 1071 | + | |
| 1072 | +input[type], select, textarea { | |
| 1073 | + margin-bottom: 0.5em; | |
| 1074 | + margin-top: 0.5em; | |
| 1075 | + border:1.5px solid #004071; | |
| 1076 | +} | |
| 1077 | +input[type="checkbox"] { | |
| 1078 | + width: 13px !important ; | |
| 1079 | + -webkit-appearance: checkbox !important; | |
| 1080 | +} | |
| 1081 | + | |
| 1082 | +span.wpcf7-list-item { | |
| 1083 | + display: inline-block; | |
| 1084 | + margin: 0 0 0 0; | |
| 1085 | +} | |
| 1086 | + | |
| 1087 | +button[type="submit"]:not([class*='col-']) { | |
| 1088 | + width: 30%; | |
| 1089 | +} | |
| 1090 | + | |
| 1091 | +.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output { | |
| 1092 | + border-color: #D90000; | |
| 1093 | + border-radius: 25px; | |
| 1094 | +} | |
| 1095 | + | |
| 1096 | +.wpcf7 form.sent .wpcf7-response-output { | |
| 1097 | + border-color: #3767D9; | |
| 1098 | + width: 50%; | |
| 1099 | +} | |
| 1100 | + | |
| 1101 | +/* Apply custom style to all CF7 checkboxes */ | |
| 1102 | +.wpcf7 input[type="checkbox"] { | |
| 1103 | + opacity: 0; | |
| 1104 | + position: absolute; | |
| 1105 | + width: 25px; | |
| 1106 | + height: 25px; | |
| 1107 | + margin: 0; | |
| 1108 | + z-index: 2; | |
| 1109 | + cursor: pointer; | |
| 1110 | +} | |
| 1111 | + | |
| 1112 | +.wpcf7 .wpcf7-list-item { | |
| 1113 | + position: relative; | |
| 1114 | + padding-left: 28px; | |
| 1115 | + display: inline-block; | |
| 1116 | + cursor: pointer; | |
| 1117 | +} | |
| 1118 | + | |
| 1119 | +.wpcf7 input[type="checkbox"] + span::before { | |
| 1120 | + content: ""; | |
| 1121 | + position: absolute; | |
| 1122 | + left: 0; | |
| 1123 | + top: 0; | |
| 1124 | + width: 25px; | |
| 1125 | + height: 25px; | |
| 1126 | + border: 1px solid #004071; | |
| 1127 | + background-color: white; | |
| 1128 | + box-sizing: border-box; | |
| 1129 | + border-radius: 0px; | |
| 1130 | + transition: all 0.2s ease; | |
| 1131 | + margin-top:5px; | |
| 1132 | +} | |
| 1133 | + | |
| 1134 | +.wpcf7 input[type="checkbox"]:checked + span::before { | |
| 1135 | + background-image: linear-gradient(#004071, #004071); | |
| 1136 | + background-clip: content-box; | |
| 1137 | + padding: 2px; /* this creates the white gap between border and inner fill */ | |
| 1138 | +} | |
| 1139 | + | |
| 1140 | + | |
| 1141 | +@media (max-width: 768px){ | |
| 1142 | + input:not([class*='col-']), select:not([class*='col-']), .input-select:not([class*='col-']), textarea:not([class*='col-']) { | |
| 1143 | + width: 100%; | |
| 1144 | + margin-top:0; | |
| 1145 | + } | |
| 1146 | + .menu-item>a{ | |
| 1147 | + color:#000000 !important; | |
| 1148 | + } | |
| 1149 | + button[type="submit"]:not([class*='col-']) { | |
| 1150 | + width: 50%; | |
| 1151 | + } | |
| 1152 | + .wpcf7 form.sent .wpcf7-response-output { | |
| 1153 | + width: 100%; | |
| 1154 | + } | |
| 1155 | +} | |
| 1156 | + | |
| 1157 | +/* Hide Captcha all pages */ | |
| 1158 | +body:not(.page-id-XX) .grecaptcha-badge { | |
| 1159 | + display: none; | |
| 1160 | +} | |
| 1161 | + | |
| 1162 | +/*css pour les offres*/ | |
| 1163 | +li.location a.google_map_link { | |
| 1164 | + color: #87CEEB; | |
| 1165 | + text-decoration: none; | |
| 1166 | + transition: color 0.3s ease; | |
| 1167 | +} | |
| 1168 | +li.location a.google_map_link:hover { | |
| 1169 | + color: #0022CC; | |
| 1170 | +} | |
| 1171 | +h1.h2 { | |
| 1172 | + background-image: url('https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/07/SITE_TALENTS_CHUM_PHOTO_1900_V1-06.jpg'); | |
| 1173 | + background-repeat: no-repeat; | |
| 1174 | + background-position: center center; | |
| 1175 | + background-size: 105vw 60vh; | |
| 1176 | + background-attachment: scroll; | |
| 1177 | + color: white; | |
| 1178 | + padding: 40px 20px; | |
| 1179 | + height:40vh; | |
| 1180 | +} | |
| 1181 | +li.job-type.temps-complet , li.job-type.temps-partiel-regulier, li.job-type.temps-partiel-occasionnel{ | |
| 1182 | + background-color: #87CEEB !important; | |
| 1183 | + color: white !important; | |
| 1184 | + text-align: center !important; | |
| 1185 | + justify-content: center !important; | |
| 1186 | + text-align: center !important; | |
| 1187 | + padding-top:10px !important; | |
| 1188 | + padding-right:10px !important; | |
| 1189 | + border-radius: 10px; | |
| 1190 | + color: black !important; | |
| 1191 | +} | |
| 1192 | +ul.job-listing-meta li { | |
| 1193 | + display: block; | |
| 1194 | +} | |
| 1195 | +ul.job-listing-meta { | |
| 1196 | + display: none; | |
| 1197 | +} | |
| 1198 | +input.application_button.button { | |
| 1199 | + background-color: #fff; | |
| 1200 | + color: #004071; | |
| 1201 | + border: none; | |
| 1202 | + width:auto; | |
| 1203 | + cursor: pointer; | |
| 1204 | + transition: background-color 0.3s ease; | |
| 1205 | +} | |
| 1206 | +input.application_button.button:hover { | |
| 1207 | + background-color: #004071 ; | |
| 1208 | + color:#fff; | |
| 1209 | +} | |
| 1210 | +div.addtoany_share_save_container { | |
| 1211 | + display: none; | |
| 1212 | +} | |
| 1213 | +.job_description h1, | |
| 1214 | +.job_description h2, | |
| 1215 | +.job_description h3, | |
| 1216 | +.job_description h4, | |
| 1217 | +.job_description h5, | |
| 1218 | +.job_description h6 { | |
| 1219 | + margin-bottom: 10px; | |
| 1220 | + margin-top: 20px; | |
| 1221 | + color:#000; | |
| 1222 | + font-weight: bold; | |
| 1223 | + font-size:25px; | |
| 1224 | +} | |
| 1225 | +.job_description { | |
| 1226 | + font-size:19px; | |
| 1227 | +} | |
| 1228 | + | |
| 1229 | +.single_job_listing hr{ | |
| 1230 | + border-color: #16375E50 !important; | |
| 1231 | +} | |
| 1232 | +.single_job_listing .default-text{ | |
| 1233 | + padding-bottom:20px; | |
| 1234 | + border-bottom: 1px solid #16375E50; | |
| 1235 | +} | |
| 1236 | +.single_job_listing .job_description h2{ | |
| 1237 | + padding-top:50px; | |
| 1238 | +} | |
| 1239 | +li.wpjmef-field-salary { | |
| 1240 | + display: none !important; | |
| 1241 | +} | |
| 1242 | +img.company_logo { | |
| 1243 | + display: none; | |
| 1244 | +} | |
| 1245 | +/* | |
| 1246 | +ul.meta { | |
| 1247 | + width: 100% !important; | |
| 1248 | + margin-top: 10px !important; | |
| 1249 | + display: flex; | |
| 1250 | + align-items: center; | |
| 1251 | +} | |
| 1252 | +ul.meta li { | |
| 1253 | + display: inline !important; | |
| 1254 | +}*/ | |
| 1255 | + | |
| 1256 | +/*hide copyright in footer*/ | |
| 1257 | +div.footer__lower.text-center-xs { | |
| 1258 | + display: none; | |
| 1259 | +} | |
| 1260 | +.alignleft { | |
| 1261 | + margin-right: 10px !important; | |
| 1262 | +} | |
| 1263 | +/*hide le + dans les offres*/ | |
| 1264 | +.a2a_dd.addtoany_share_save.addtoany_share { | |
| 1265 | + display: none; | |
| 1266 | +} | |
| 1267 | +/*hide the alerte button in Liste des offres d’emplois*/ | |
| 1268 | +a.alert { | |
| 1269 | + display: none; | |
| 1270 | +} | |
| 1271 | +/* Hide borders and set background to white for ul and its li children in job types*/ | |
| 1272 | +ul.job_types { | |
| 1273 | + list-style: none !important; | |
| 1274 | + padding: 0 !important; | |
| 1275 | + border: none !important; | |
| 1276 | + background-color: transparent !important; | |
| 1277 | +} | |
| 1278 | +ul.job_types li { | |
| 1279 | + border: none !important; | |
| 1280 | + font-size: 125%; | |
| 1281 | +} | |
| 1282 | +.showing_jobs { | |
| 1283 | + background-color:#7cafde82 !important; | |
| 1284 | +} | |
| 1285 | + | |
| 1286 | +.job-type { | |
| 1287 | + margin-right: 20px; | |
| 1288 | +} | |
| 1289 | + | |
| 1290 | +div.job-location { | |
| 1291 | + font-weight: bold; | |
| 1292 | + margin-top: -6.5%; | |
| 1293 | +} | |
| 1294 | + | |
| 1295 | +.before-job button.application_button.button { | |
| 1296 | + color: white; | |
| 1297 | + border: 2px solid #ffffff; | |
| 1298 | + cursor: pointer; | |
| 1299 | + transition: background-color 0.3s ease; | |
| 1300 | + border-radius: 30px; | |
| 1301 | + font-weight:700; | |
| 1302 | +} | |
| 1303 | + | |
| 1304 | +.before-job button.application_button.button:hover { | |
| 1305 | + color: #483388; | |
| 1306 | + background: #ffffff; | |
| 1307 | +} | |
| 1308 | +.before-job .job_application.application{ | |
| 1309 | + margin-top: -110px; | |
| 1310 | + z-index: 10; | |
| 1311 | + position: relative; | |
| 1312 | +} | |
| 1313 | + | |
| 1314 | +.job-manager-single-alert-link a { | |
| 1315 | + color: #6BA4BB; | |
| 1316 | +} | |
| 1317 | +.job-manager-single-alert-link a:hover { | |
| 1318 | + color: #B3E0F7; | |
| 1319 | +} | |
| 1320 | +.back-link { | |
| 1321 | + display: block; | |
| 1322 | + width: 100%; | |
| 1323 | + margin-bottom: -77.5px; | |
| 1324 | + margin-left: -10px; | |
| 1325 | +} | |
| 1326 | +.job-type-location .job-type, | |
| 1327 | +.job-type-location .job-location, | |
| 1328 | +.job-type-location .job-time-left{ | |
| 1329 | + margin-right: 20px; | |
| 1330 | + color: #004071; | |
| 1331 | + font-size: 19px; | |
| 1332 | + font-weight: normal; | |
| 1333 | +} | |
| 1334 | + | |
| 1335 | +.application_details { | |
| 1336 | + background-color: white; | |
| 1337 | +} | |
| 1338 | + | |
| 1339 | +.back-link a { | |
| 1340 | + color: #767676; | |
| 1341 | +} | |
| 1342 | +.back-link a:hover { | |
| 1343 | + color: gray; | |
| 1344 | +} | |
| 1345 | + | |
| 1346 | +.job-type-location span { | |
| 1347 | + font-family: 'Gotham',sans-serif; | |
| 1348 | +} | |
| 1349 | + | |
| 1350 | +.search_submit { | |
| 1351 | + text-align: right; | |
| 1352 | +} | |
| 1353 | + | |
| 1354 | +@media screen and (max-width: 768px) { | |
| 1355 | + .job_application { | |
| 1356 | + flex: 100%; | |
| 1357 | + justify-content: flex-start; | |
| 1358 | + } | |
| 1359 | +} | |
| 1360 | + | |
| 1361 | +.input-select { | |
| 1362 | + display: block; | |
| 1363 | +} | |
| 1364 | + | |
| 1365 | +div.search_categories { | |
| 1366 | + padding-top:10px !important; | |
| 1367 | +} | |
| 1368 | +.search_jobs { | |
| 1369 | + display: flex ; | |
| 1370 | + flex-wrap: wrap ; | |
| 1371 | +} | |
| 1372 | +.search_submit { | |
| 1373 | + flex: 30%; | |
| 1374 | +} | |
| 1375 | + | |
| 1376 | +.search_location { | |
| 1377 | + width: 100% !important; | |
| 1378 | + padding-top: 10px; | |
| 1379 | + padding-left:0 !important; | |
| 1380 | + flex: 1; | |
| 1381 | + min-width: 0; | |
| 1382 | +} | |
| 1383 | + | |
| 1384 | +.search_location .input-select { | |
| 1385 | + display: block; | |
| 1386 | +} | |
| 1387 | + | |
| 1388 | +.search_keywords { | |
| 1389 | + width: 100% !important; | |
| 1390 | + padding-top: 10px; | |
| 1391 | + padding-left:0 !important; | |
| 1392 | + padding-right:0 !important; | |
| 1393 | + flex: 2; | |
| 1394 | + min-width: 0; | |
| 1395 | +} | |
| 1396 | + | |
| 1397 | +.location-n-cat .location-n-cat:has(.search_keywords) { | |
| 1398 | + width: 100%; | |
| 1399 | + display: flex; | |
| 1400 | + gap: 10px; | |
| 1401 | + flex-wrap: wrap; | |
| 1402 | +} | |
| 1403 | + | |
| 1404 | +.search_submit { | |
| 1405 | + margin-top: 10px; | |
| 1406 | +} | |
| 1407 | + | |
| 1408 | +/* Adjustments for select dropdowns */ | |
| 1409 | +/* Hide the comments */ | |
| 1410 | +.comments { | |
| 1411 | + display: none; | |
| 1412 | +} | |
| 1413 | +/* Hide the comment form */ | |
| 1414 | +.comments-form { | |
| 1415 | + display: none; | |
| 1416 | +} | |
| 1417 | + | |
| 1418 | +input:not([class*='col-']), select:not([class*='col-']), .input-select:not([class*='col-']), textarea:not([class*='col-']) { | |
| 1419 | + width: 100%; | |
| 1420 | + margin-top:0; | |
| 1421 | +} | |
| 1422 | + | |
| 1423 | +#search_location { | |
| 1424 | + background-color: transparent; | |
| 1425 | + border: 2px solid #004071; | |
| 1426 | + border-radius: 10px; | |
| 1427 | + padding-top: 10px; | |
| 1428 | + padding-top: 5px; | |
| 1429 | + font-size: 16px; | |
| 1430 | +} | |
| 1431 | +.input-select:after { | |
| 1432 | + position: absolute; | |
| 1433 | + right: 0; | |
| 1434 | + height: 100%; | |
| 1435 | + top: 0; | |
| 1436 | + font-size: 40px; | |
| 1437 | + font-weight: 700; | |
| 1438 | + color: #13223f !important; | |
| 1439 | + transform: rotate(90deg); | |
| 1440 | + content: '\203A'; | |
| 1441 | + pointer-events: none; | |
| 1442 | + border-left: none; | |
| 1443 | + line-height: 60px; | |
| 1444 | +} | |
| 1445 | +#search_keywords { | |
| 1446 | + background-color: transparent; | |
| 1447 | + border: 2px solid #004071; | |
| 1448 | + border-radius: 10px; | |
| 1449 | + color: #004071 !important; | |
| 1450 | +} | |
| 1451 | +input[type]:focus, select:focus, textarea:focus { | |
| 1452 | + border-color: #2b546b !important; | |
| 1453 | +} | |
| 1454 | +select { | |
| 1455 | + color: #B3B3BD; | |
| 1456 | +} | |
| 1457 | +@media screen and (max-width: 767px) { | |
| 1458 | + input[type="submit"] { | |
| 1459 | + width: 100% !important; | |
| 1460 | + font-size:18px!important; | |
| 1461 | + } | |
| 1462 | + | |
| 1463 | +} | |
| 1464 | +.fas.fa-calendar, .fas.fa-clock, .fas.fa-map-marker-alt { | |
| 1465 | + color: #004071; | |
| 1466 | + margin-right:5px; | |
| 1467 | +} | |
| 1468 | + | |
| 1469 | +.footer-6 { | |
| 1470 | + position: absolute; | |
| 1471 | + left: 0; | |
| 1472 | + right: 0; | |
| 1473 | + width: 100%; | |
| 1474 | + margin-top:10px; | |
| 1475 | +} | |
| 1476 | + | |
| 1477 | +.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn--primary { | |
| 1478 | + background-color: #004071; | |
| 1479 | + color: #fff !important; | |
| 1480 | + width: auto; | |
| 1481 | + padding: 0px 15px ; | |
| 1482 | + font-size:23px; | |
| 1483 | + margin-top: 10px; | |
| 1484 | + font-family:'Gotham',sans-serif; | |
| 1485 | + height:auto; | |
| 1486 | + box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3);} | |
| 1487 | + | |
| 1488 | +.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn--primary:hover{ | |
| 1489 | + background-color: #fff; | |
| 1490 | + color:#004071 !important; | |
| 1491 | + border:1px solid #004071; | |
| 1492 | +} | |
| 1493 | + | |
| 1494 | +.masonry { | |
| 1495 | + transform: scale(0.6); | |
| 1496 | + margin-top: -50%; | |
| 1497 | + margin-bottom: -40%; | |
| 1498 | +} | |
| 1499 | + | |
| 1500 | +.masonry__item h4 { | |
| 1501 | + transform: scale(1.3); | |
| 1502 | +} | |
| 1503 | + | |
| 1504 | +div.article__title + span { | |
| 1505 | + display: none; | |
| 1506 | +} | |
| 1507 | + | |
| 1508 | +.bar__module a.btn--demo { | |
| 1509 | + background-color: #004071; | |
| 1510 | + border-radius: 5px; | |
| 1511 | + padding:5px 25px; | |
| 1512 | + width:auto; | |
| 1513 | +} | |
| 1514 | +.btn--demo .btn__text::before { | |
| 1515 | + content: ""; | |
| 1516 | + display: none; | |
| 1517 | + width: 20px; | |
| 1518 | + height: 20px; | |
| 1519 | + margin-right: 8px; | |
| 1520 | + background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='white' stroke-width='2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 4-6 8-6s8 2 8 6'/%3E%3C/svg%3E"); | |
| 1521 | + background-size: contain; | |
| 1522 | + background-repeat: no-repeat; | |
| 1523 | + vertical-align: middle; | |
| 1524 | +} | |
| 1525 | + | |
| 1526 | +#menu1 { | |
| 1527 | + padding-top: 60px; | |
| 1528 | +} | |
| 1529 | + | |
| 1530 | +.flickity-page-dots .dot { | |
| 1531 | + display: none; | |
| 1532 | +} | |
| 1533 | + | |
| 1534 | +.wpcf7-list-item-label { | |
| 1535 | + font-size: 17px; | |
| 1536 | + display: inline-block; | |
| 1537 | + vertical-align: top; | |
| 1538 | + padding-left: 0.4em; | |
| 1539 | + line-height: 30px; | |
| 1540 | + color:#004071; | |
| 1541 | +} | |
| 1542 | +.wpcf7-form a{ | |
| 1543 | + color:#000; | |
| 1544 | + font-weight:600; | |
| 1545 | +} | |
| 1546 | + | |
| 1547 | +.wpcf7-list-item-label a{ | |
| 1548 | + font-weight:700; | |
| 1549 | + color:#004071; | |
| 1550 | +} | |
| 1551 | + | |
| 1552 | +.wpcf7-list-item label { | |
| 1553 | + display: flex; | |
| 1554 | + align-items: flex-start; | |
| 1555 | +} | |
| 1556 | + | |
| 1557 | +.wpcf7-list-item input[type="checkbox"] { | |
| 1558 | + margin-top: 0.2em; | |
| 1559 | +} | |
| 1560 | + | |
| 1561 | +#menu-vertical-menu-footer .menu-item { | |
| 1562 | + margin-left: 20px; | |
| 1563 | +} | |
| 1564 | + | |
| 1565 | +/* Hériter du style pour les Exigences et le Mandat dans une offre d'emploi */ | |
| 1566 | +.default-text * { | |
| 1567 | + font-size: inherit !important; | |
| 1568 | + padding-top: inherit !important; | |
| 1569 | + font-family: inherit !important; | |
| 1570 | + background-color: inherit !important; | |
| 1571 | +} | |
| 1572 | + | |
| 1573 | +/* Hériter du style pour Informations_de_base et Conditions_de_travail dans une offre d'emploi */ | |
| 1574 | +.Informations_de_base *, .Conditions_de_travail * { | |
| 1575 | + font-size: inherit !important; | |
| 1576 | +} | |
| 1577 | + | |
| 1578 | +/*homepage hero menu*/ | |
| 1579 | +.full-width-div { | |
| 1580 | + display: flex; | |
| 1581 | + flex-wrap: wrap; | |
| 1582 | + justify-content: space-between; | |
| 1583 | +} | |
| 1584 | + | |
| 1585 | +.image-container { | |
| 1586 | + width: calc(33.33% - 5px); | |
| 1587 | + flex-grow: 1; | |
| 1588 | + position: relative; | |
| 1589 | + text-align: center; | |
| 1590 | + font-weight: bold; | |
| 1591 | + display: inline-block; | |
| 1592 | + margin: 0; | |
| 1593 | + padding: 0; | |
| 1594 | + box-sizing: border-box; | |
| 1595 | +} | |
| 1596 | +.image-container::after { | |
| 1597 | + content: ""; | |
| 1598 | + position: absolute; | |
| 1599 | + inset: 0; | |
| 1600 | + background: linear-gradient( | |
| 1601 | + to bottom, | |
| 1602 | + rgba(230, 159, 67, 0.2) 25%, | |
| 1603 | + rgb(51, 46, 116, 0.9) 100% | |
| 1604 | + ); | |
| 1605 | + pointer-events: none; | |
| 1606 | + z-index:0; | |
| 1607 | +} | |
| 1608 | +.image-container:hover::after { | |
| 1609 | + background: linear-gradient( | |
| 1610 | + to bottom, | |
| 1611 | + rgb(44, 142, 151, 0.9) 30%, | |
| 1612 | + rgba(74, 39, 133, 0.9) 90% | |
| 1613 | + ); | |
| 1614 | +} | |
| 1615 | +.image-container img { | |
| 1616 | + width: 100%; | |
| 1617 | + max-width: 100%; | |
| 1618 | + height: auto; | |
| 1619 | + margin-bottom: 0px; | |
| 1620 | + display: block; | |
| 1621 | +} | |
| 1622 | +.image-container .text { | |
| 1623 | + position: absolute; | |
| 1624 | + bottom: 0; | |
| 1625 | + left: 0; | |
| 1626 | + width: 100%; | |
| 1627 | + text-align: center; | |
| 1628 | + padding: 10px; | |
| 1629 | + z-index: 1; | |
| 1630 | + transform: translateY(0); | |
| 1631 | + transition: | |
| 1632 | + top 0.4s ease, | |
| 1633 | + bottom 0.4s ease, | |
| 1634 | + transform 0.4s ease, | |
| 1635 | + background 0.4s ease, | |
| 1636 | + opacity 0.4s ease; | |
| 1637 | +} | |
| 1638 | +.image-container:hover .text { | |
| 1639 | + bottom: auto; | |
| 1640 | + top: 50%; | |
| 1641 | + transform: translateY(-50%); | |
| 1642 | +} | |
| 1643 | +.image-container .text span { | |
| 1644 | + color: white; | |
| 1645 | + font-size: 25px; | |
| 1646 | + font-weight: normal; | |
| 1647 | + z-index: 1; | |
| 1648 | +} | |
| 1649 | + | |
| 1650 | +@media (max-width: 767px) { | |
| 1651 | + .image-container { | |
| 1652 | + width: 100%; | |
| 1653 | + } | |
| 1654 | + .text span { | |
| 1655 | + font-size: 20px; | |
| 1656 | + line-height: 75%; | |
| 1657 | + } | |
| 1658 | +} | |
| 1659 | + | |
| 1660 | +.hero-text { | |
| 1661 | + color: white; | |
| 1662 | + position: relative; | |
| 1663 | +} | |
| 1664 | + | |
| 1665 | +.hero-text span { | |
| 1666 | + display: block; | |
| 1667 | + margin: 11px 0 17px 0; | |
| 1668 | + font-size: 30px; | |
| 1669 | + color: white; | |
| 1670 | + position: relative; | |
| 1671 | +} | |
| 1672 | + | |
| 1673 | +/*single job*/ | |
| 1674 | +.article__title { | |
| 1675 | + margin-bottom: -60px !important; | |
| 1676 | + margin-top: -60px !important; | |
| 1677 | + margin-left: -150% !important; | |
| 1678 | + margin-right: -150% !important; | |
| 1679 | + position: relative; | |
| 1680 | + z-index:5; | |
| 1681 | +} | |
| 1682 | +.article__title.text-center h1 { | |
| 1683 | + padding-left: 37.5555%; | |
| 1684 | + padding-right: 40%; | |
| 1685 | + padding-bottom: 125px; | |
| 1686 | + padding-top: 100px; | |
| 1687 | + font-size: 40px; | |
| 1688 | +} | |
| 1689 | + | |
| 1690 | +.vc_row.HeroNoPadding [class*="col-"] { | |
| 1691 | + padding-left: 0 !important; | |
| 1692 | + padding-right: 0 !important; | |
| 1693 | + margin-left: 0px; | |
| 1694 | + margin-right: 0px; | |
| 1695 | +} | |
| 1696 | + | |
| 1697 | +.article__title.text-center { | |
| 1698 | + text-align: left; | |
| 1699 | +} | |
| 1700 | + | |
| 1701 | +.nowrap { | |
| 1702 | + white-space: nowrap; | |
| 1703 | +} | |
| 1704 | + | |
| 1705 | +/*job listing*/ | |
| 1706 | +.load_more_jobs strong { | |
| 1707 | + font-size: 20px; | |
| 1708 | + color: black; | |
| 1709 | + font-weight: bold ; | |
| 1710 | +} | |
| 1711 | + | |
| 1712 | + | |
| 1713 | +/*home page hero*/ | |
| 1714 | +.hero-video::after { | |
| 1715 | + content: ""; | |
| 1716 | + position: absolute; | |
| 1717 | + inset: 0; | |
| 1718 | + background: linear-gradient( | |
| 1719 | + to bottom, | |
| 1720 | + rgba(230, 159, 67, 0.3) 0%, | |
| 1721 | + rgba(74, 39, 133, 0.8) 90% | |
| 1722 | + ); | |
| 1723 | + z-index: 1; | |
| 1724 | + pointer-events: none; | |
| 1725 | +} | |
| 1726 | + | |
| 1727 | +a.su-button.su-button-style-flat.hero-btn{ | |
| 1728 | + border: 4px solid #34ACAA !important; | |
| 1729 | +} | |
| 1730 | + | |
| 1731 | +a.su-button.su-button-style-flat.hero-btn:hover{ | |
| 1732 | + background-color: #ffffff !important; | |
| 1733 | +} | |
| 1734 | +a.su-button.su-button-style-flat { | |
| 1735 | + transition: background-color 0.3s ease; | |
| 1736 | +} | |
| 1737 | +a.su-button.su-button-style-flat span { | |
| 1738 | + transition: color 0.3s ease; | |
| 1739 | +} | |
| 1740 | +a.su-button.su-button-style-flat.hero-btn:hover span{ | |
| 1741 | + color: #34ACAA !important; | |
| 1742 | +} | |
| 1743 | + | |
| 1744 | + | |
| 1745 | +/*search*/ | |
| 1746 | +.job_filters { | |
| 1747 | + background-color: transparent; | |
| 1748 | + border: none; | |
| 1749 | +} | |
| 1750 | + | |
| 1751 | +.job_filters label { | |
| 1752 | + font-weight: bold; | |
| 1753 | +} | |
| 1754 | + | |
| 1755 | +.job_filters input[type="text"], | |
| 1756 | +.job_filters input[type="number"] { | |
| 1757 | + width: 100%; | |
| 1758 | + padding: 10px; | |
| 1759 | + border: 1px solid #ccc; | |
| 1760 | + border-radius: 3px; | |
| 1761 | +} | |
| 1762 | + | |
| 1763 | +.job_filters input[type="submit"] { | |
| 1764 | + background-color: #0032FF; | |
| 1765 | + color: #fff; | |
| 1766 | + padding: 10px 20px; | |
| 1767 | + border: none; | |
| 1768 | + border-radius: 3px; | |
| 1769 | + cursor: pointer; | |
| 1770 | +} | |
| 1771 | + | |
| 1772 | +.job_filters input[type="submit"]:hover { | |
| 1773 | + background-color: #0022CC; | |
| 1774 | +} | |
| 1775 | + | |
| 1776 | +.job_filters .job_types li{ | |
| 1777 | + padding-left:0px | |
| 1778 | +} | |
| 1779 | + | |
| 1780 | + | |
| 1781 | +ul.job_types li { | |
| 1782 | + list-style: none !IMPORTANT; | |
| 1783 | +} | |
| 1784 | +.input-select { | |
| 1785 | + display: none; | |
| 1786 | +} | |
| 1787 | +.rss_link { | |
| 1788 | + display: none; | |
| 1789 | +} | |
| 1790 | +.alignnone { | |
| 1791 | + width: 100%; | |
| 1792 | + height: auto; | |
| 1793 | +} | |
| 1794 | + | |
| 1795 | +.wpcf7-checkbox .wpcf7-list-item { | |
| 1796 | + display: inline-block; | |
| 1797 | + width: 31%; | |
| 1798 | + box-sizing: border-box; | |
| 1799 | + vertical-align: top; | |
| 1800 | + margin-top:20px; | |
| 1801 | +} | |
| 1802 | +.wpcf7-checkbox .wpcf7-list-item:nth-child(3n) { | |
| 1803 | + clear: both; | |
| 1804 | +} | |
| 1805 | + | |
| 1806 | + | |
| 1807 | +/* home page bsl special */ | |
| 1808 | +.custom-checklist { | |
| 1809 | + list-style: none; | |
| 1810 | + padding: 0; | |
| 1811 | + margin: 30px 0 0 0 !important; | |
| 1812 | +} | |
| 1813 | + | |
| 1814 | +.custom-checklist li { | |
| 1815 | + display: flex; | |
| 1816 | + align-items: flex-start; | |
| 1817 | + margin-left: 0px !important; | |
| 1818 | + font-size: 19px; | |
| 1819 | + color: #16375E; | |
| 1820 | +} | |
| 1821 | + | |
| 1822 | +.check-icon { | |
| 1823 | + flex-shrink: 0; | |
| 1824 | + margin-right: 10px; | |
| 1825 | + margin-top: -3px; | |
| 1826 | +} | |
| 1827 | + | |
| 1828 | +.button-row { | |
| 1829 | + display: flex; | |
| 1830 | + gap: 30px; | |
| 1831 | + justify-content: center; | |
| 1832 | + flex-wrap: wrap; | |
| 1833 | +} | |
| 1834 | + | |
| 1835 | +.custom-button { | |
| 1836 | + display: flex; | |
| 1837 | + align-items: center; | |
| 1838 | + gap: 16px; | |
| 1839 | + border: 3px solid #0d2f5a; | |
| 1840 | + background-color: #0d2f5a; | |
| 1841 | + color: white; | |
| 1842 | + padding: 20px 25px; | |
| 1843 | + border-radius: 50px; | |
| 1844 | + text-decoration: none; | |
| 1845 | + font-weight: bold; | |
| 1846 | + font-size: 18px; | |
| 1847 | + font-family: sans-serif; | |
| 1848 | + min-width: 280px; | |
| 1849 | + justify-content: flex-start; | |
| 1850 | +} | |
| 1851 | + | |
| 1852 | +.custom-button:hover { | |
| 1853 | + background-color:rgba(256, 256, 256, 0); | |
| 1854 | + color: #0d2f5a; | |
| 1855 | +} | |
| 1856 | +.custom-button .icon { | |
| 1857 | + display: flex; | |
| 1858 | + align-items: center; | |
| 1859 | + justify-content: center; | |
| 1860 | +} | |
| 1861 | + | |
| 1862 | +.custom-button svg { | |
| 1863 | + height: 50px; | |
| 1864 | + min-width: 50px; | |
| 1865 | +} | |
| 1866 | + | |
| 1867 | +.custom-button .text { | |
| 1868 | + line-height: 1.3; | |
| 1869 | + text-align: left; | |
| 1870 | + color: #fff; | |
| 1871 | + font-size: 25px; | |
| 1872 | +} | |
| 1873 | +.custom-button:hover .text { | |
| 1874 | + color: #0d2f5a; | |
| 1875 | +} | |
| 1876 | + | |
| 1877 | +.button-row-bckground { | |
| 1878 | + background: linear-gradient( | |
| 1879 | + to bottom, | |
| 1880 | + rgba(230, 159, 67, 0.2) 25%, | |
| 1881 | + rgb(51, 46, 116, 0.2) 100% | |
| 1882 | + ); | |
| 1883 | +} | |
| 1884 | + | |
| 1885 | +.banner { | |
| 1886 | + margin: 0; | |
| 1887 | + background-color: #17355f; | |
| 1888 | +} | |
| 1889 | +.banner-container { | |
| 1890 | + display: flex; | |
| 1891 | + align-items: center; | |
| 1892 | + justify-content: center; | |
| 1893 | + padding: 60px 100px 60px 60px !important; | |
| 1894 | +} | |
| 1895 | +.home-chezNous-section img{ | |
| 1896 | + border-radius:15px; | |
| 1897 | +} | |
| 1898 | +.home-chezNous-section { | |
| 1899 | + position: relative; | |
| 1900 | + text-align: right; | |
| 1901 | + font-weight: bold; | |
| 1902 | + display: inline-block; | |
| 1903 | + margin: 0; | |
| 1904 | + height: auto; | |
| 1905 | + } | |
| 1906 | +.home-chezNous-section .chezNous-btns { | |
| 1907 | + position: absolute; | |
| 1908 | + bottom: 50%; | |
| 1909 | + left: 65%; | |
| 1910 | + width: 100%; | |
| 1911 | + text-align: center; | |
| 1912 | + width: auto; | |
| 1913 | +} | |
| 1914 | +.home-chezNous-section .chezNous-btn { | |
| 1915 | + color: #F67E4A; | |
| 1916 | + background: #fff; | |
| 1917 | + border: 3px solid #fff; | |
| 1918 | + padding: 7px; | |
| 1919 | + font-size: 35px; | |
| 1920 | + border-radius:10px; | |
| 1921 | + font-weight: 900; | |
| 1922 | + box-shadow: -4px 6px 0px 0px #C2653C; | |
| 1923 | +} | |
| 1924 | +.home-chezNous-section .chezNous-btn:hover { | |
| 1925 | + border: 3px solid #fff; | |
| 1926 | + background: #F67E4A; | |
| 1927 | + color: white; | |
| 1928 | +} | |
| 1929 | +.chezNous-btns a { | |
| 1930 | + display: inline-block; | |
| 1931 | + text-decoration: none; | |
| 1932 | +} | |
| 1933 | +.chezNous-link { | |
| 1934 | + margin-top: 20px; | |
| 1935 | + display: inline-block; | |
| 1936 | + color: #fff !important; | |
| 1937 | + font-weight: normal; | |
| 1938 | + font-size: 20px; | |
| 1939 | +} | |
| 1940 | +.chezNous-link:hover { | |
| 1941 | + text-decoration: underline; | |
| 1942 | + font-weight:bold; | |
| 1943 | +} | |
| 1944 | + | |
| 1945 | +.banner-container div:has(.home-chezNous-section) { | |
| 1946 | + text-align: center; | |
| 1947 | +} | |
| 1948 | +.chezNous-autre { | |
| 1949 | + background: white !important; | |
| 1950 | + border-radius:15px; | |
| 1951 | + display: flex; | |
| 1952 | + align-items: center; | |
| 1953 | + margin-left: -60px; | |
| 1954 | +} | |
| 1955 | +.banner-container.vc_row { | |
| 1956 | + display: flex; | |
| 1957 | + align-items: stretch; | |
| 1958 | +} | |
| 1959 | +.vc_col-has-fill>.vc_column-inner, .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_vc_row>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_vc_row_inner>.vc_row>.vc_vc_column_inner>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_vc_column_inner>.vc_column_container>.vc_column-inner, .vc_section.vc_section-has-fill, .vc_section.vc_section-has-fill+.vc_row-full-width+.vc_section, .vc_section.vc_section-has-fill+.vc_section{ | |
| 1960 | + padding-top: 0px; | |
| 1961 | +} | |
| 1962 | + | |
| 1963 | +/*footer*/ | |
| 1964 | +.footer-t { | |
| 1965 | + color:#fff !important; | |
| 1966 | + font-weight: bold !important; | |
| 1967 | + font-size: 30px ; | |
| 1968 | +} | |
| 1969 | +.footer a { | |
| 1970 | + color:#fff !important; | |
| 1971 | +} | |
| 1972 | + | |
| 1973 | +.footer-with-b { | |
| 1974 | + display: flex; | |
| 1975 | + flex-direction: column; | |
| 1976 | + align-items: flex-start; | |
| 1977 | + gap: 0px; | |
| 1978 | +} | |
| 1979 | + | |
| 1980 | +.footer-b { | |
| 1981 | + display: inline-block; | |
| 1982 | + padding: 12px 30px; | |
| 1983 | + color: white !important; | |
| 1984 | + border: 2px solid white; | |
| 1985 | + border-radius: 10px; | |
| 1986 | + text-decoration: none; | |
| 1987 | + font-weight: bold; | |
| 1988 | + background: transparent; | |
| 1989 | + transition: background 0.3s, color 0.3s; | |
| 1990 | + text-align: center; | |
| 1991 | + min-width: 230px; | |
| 1992 | + font-size: 20px; | |
| 1993 | +} | |
| 1994 | +.footer-b:hover { | |
| 1995 | + background: white; | |
| 1996 | + color: #2b546b !important; | |
| 1997 | +} | |
| 1998 | + | |
| 1999 | +.left-section a{ | |
| 2000 | + color: #fff !important; | |
| 2001 | + font-size: 23px; | |
| 2002 | +} | |
| 2003 | +.left-section a:hover{ | |
| 2004 | + color: #0067a5 !important; | |
| 2005 | +} | |
| 2006 | + a.footer-t:hover{ | |
| 2007 | + color: #95F0FE !important; | |
| 2008 | +} | |
| 2009 | +/* home-job card */ | |
| 2010 | +.home-jobs .job-listing-wrapper { | |
| 2011 | + overflow-x: auto; | |
| 2012 | + overflow-y: hidden; | |
| 2013 | + white-space: nowrap; | |
| 2014 | + padding-bottom: 20px; | |
| 2015 | + scrollbar-width: none; | |
| 2016 | +} | |
| 2017 | +.home-jobs .job-listing-wrapper::-webkit-scrollbar { | |
| 2018 | + display: none; /* Chrome, Safari */ | |
| 2019 | +} | |
| 2020 | +.home-jobs .job_listings { | |
| 2021 | + display: flex; | |
| 2022 | + flex-wrap: nowrap; | |
| 2023 | + gap: 20px; | |
| 2024 | + list-style: none; | |
| 2025 | + padding: 0; | |
| 2026 | + margin: 5px; | |
| 2027 | +} | |
| 2028 | +.home-jobs .job-card { | |
| 2029 | + background:#C6C6B845; | |
| 2030 | + border-radius: 10px; | |
| 2031 | + box-shadow: 0 4px 15px rgba(0,0,0,0.05); | |
| 2032 | + padding: 40px 20px; | |
| 2033 | + width: 300px; | |
| 2034 | + min-width: 325px; | |
| 2035 | + min-height: 420px; | |
| 2036 | + white-space: normal; | |
| 2037 | + display: flex; | |
| 2038 | + flex-direction: column; | |
| 2039 | + justify-content: space-between; | |
| 2040 | +} | |
| 2041 | + | |
| 2042 | +.home-jobs .job-card:hover{ | |
| 2043 | + background:#0067a5; | |
| 2044 | +} | |
| 2045 | +.home-jobs .job-listing-link-button{ | |
| 2046 | + background: transparent; | |
| 2047 | + border: 2px solid #7CAFDE !important; | |
| 2048 | + color: #7CAFDE; | |
| 2049 | + text-align: center; | |
| 2050 | + border-radius: 10px; | |
| 2051 | + margin: 0 120px 0 0!important; | |
| 2052 | + padding: 5px!important; | |
| 2053 | + font-size: 19px; | |
| 2054 | +} | |
| 2055 | +.home-jobs .job-card:hover .job-listing-link-button { | |
| 2056 | + background-color: transparent; | |
| 2057 | + color: white; | |
| 2058 | + border-color:#fff !important; | |
| 2059 | +} | |
| 2060 | + | |
| 2061 | + | |
| 2062 | +.home-jobs .job-title h3 { | |
| 2063 | + font-size: 23px; | |
| 2064 | + color: #000; | |
| 2065 | + margin-bottom: 15px; | |
| 2066 | + font-weight: bolder; | |
| 2067 | +} | |
| 2068 | +.home-jobs .job-card:hover .job-title h3{ | |
| 2069 | + color:#fff; | |
| 2070 | +} | |
| 2071 | +.home-jobs .job-type-location span { | |
| 2072 | + display: flex; | |
| 2073 | + align-items: center; | |
| 2074 | + gap: 8px; | |
| 2075 | + color: #000; | |
| 2076 | + font-weight:bolder; | |
| 2077 | + margin-bottom: 8px; | |
| 2078 | + font-size: 20px; | |
| 2079 | + line-height: 18px; | |
| 2080 | + min-height:40px; | |
| 2081 | +} | |
| 2082 | +.home-jobs .job-type-location{ | |
| 2083 | + border-top:1px solid #7cafde; | |
| 2084 | +} | |
| 2085 | +.home-jobs .job-card:hover .job-type-location span{ | |
| 2086 | + color:#fff; | |
| 2087 | +} | |
| 2088 | +.home-jobs .job-type-location span.apply-button{ | |
| 2089 | + min-height:10px; | |
| 2090 | +} | |
| 2091 | +.home-jobs ul.job_listings li.job_listing, .home-jobs ul.job_listings { | |
| 2092 | + border: none !important; | |
| 2093 | +} | |
| 2094 | +ul.job_listings li.job_listing a{ | |
| 2095 | + padding: 0 ; | |
| 2096 | +} | |
| 2097 | +ul.job_listings li.job_listing a:hover{ | |
| 2098 | + background:transparent; | |
| 2099 | +} | |
| 2100 | +.home-jobs .job-type-location i { | |
| 2101 | + color: #000; | |
| 2102 | + display:none; | |
| 2103 | +} | |
| 2104 | +.home-jobs .job-listing-link { | |
| 2105 | + text-decoration: none; | |
| 2106 | + color: inherit; | |
| 2107 | +} | |
| 2108 | +.home-jobs .nav-btn { | |
| 2109 | + background: none; | |
| 2110 | + border:none; | |
| 2111 | + border: none; | |
| 2112 | + padding: 0; | |
| 2113 | + cursor: pointer; | |
| 2114 | + transition: transform 0.2s ease; | |
| 2115 | +} | |
| 2116 | +.home-jobs .nav-btn svg circle { | |
| 2117 | + transition: fill 0.3s ease, stroke 0.3s ease; | |
| 2118 | +} | |
| 2119 | +.home-jobs .nav-btn svg path { | |
| 2120 | + transition: stroke 0.3s ease; | |
| 2121 | +} | |
| 2122 | + | |
| 2123 | +.home-jobs .nav-btn:hover svg path { | |
| 2124 | + stroke: white; | |
| 2125 | +} | |
| 2126 | +.home-jobs .nav-btns { | |
| 2127 | + text-align: right; | |
| 2128 | +} | |
| 2129 | +.toutes-offres{ | |
| 2130 | + text-align: center; | |
| 2131 | + border: 2px solid #2b546b; | |
| 2132 | + color: #2b546b; | |
| 2133 | + padding: 0px 5px; | |
| 2134 | + border-radius: 35px; | |
| 2135 | +} | |
| 2136 | +.toutes-offres:hover{ | |
| 2137 | + background:#2b546b; | |
| 2138 | +} | |
| 2139 | +.toutes-offres a{ | |
| 2140 | + color:#2b546b; | |
| 2141 | + font-weight: bold; | |
| 2142 | + font-size:19px; | |
| 2143 | + line-height: 25px; | |
| 2144 | + display: inline-block; | |
| 2145 | + margin-top:4px; | |
| 2146 | + width:100%; | |
| 2147 | +} | |
| 2148 | +.toutes-offres:hover a{ | |
| 2149 | + color:#fff; | |
| 2150 | +} | |
| 2151 | +.home-jobs .wpb_wrapper:has(.wpb_wrapper .toutes-offres){ | |
| 2152 | + min-height:420px; | |
| 2153 | + white-space: normal; | |
| 2154 | + display: flex; | |
| 2155 | + flex-direction: column; | |
| 2156 | + justify-content: space-between; | |
| 2157 | +} | |
| 2158 | + | |
| 2159 | +div.wpcf7[data-wpcf7-id="4890"] .wpcf7-not-valid:not(input){ | |
| 2160 | + border: 0px; | |
| 2161 | +} | |
| 2162 | +div.wpcf7 .wpcf7-not-valid::before{ | |
| 2163 | + content: "Ce champ est requis.\A\A"; | |
| 2164 | + color: red; | |
| 2165 | + font-weight: bold; | |
| 2166 | + white-space: pre-line; | |
| 2167 | +} | |
| 2168 | + | |
| 2169 | +.wpcf7-form-control.wpcf7-text, | |
| 2170 | +.wpcf7-form-control.wpcf7-email { | |
| 2171 | + width: 100%; | |
| 2172 | + border-radius: 10px; | |
| 2173 | +} | |
| 2174 | + | |
| 2175 | +a[href*="desabonnement"], | |
| 2176 | +a[href*="désabonnement"] { | |
| 2177 | + display: inline-block; | |
| 2178 | + margin-top: 15px; | |
| 2179 | + color: #1e88e5; | |
| 2180 | + font-size: 14px; | |
| 2181 | + text-decoration: underline; | |
| 2182 | +} | |
| 2183 | + | |
| 2184 | +a[href*="desabonnement"]:hover { | |
| 2185 | + text-decoration: none; | |
| 2186 | +} | |
| 2187 | + | |
| 2188 | +@media (min-width: 992px) { | |
| 2189 | + .footer-6 .col-md-4:first-of-type { | |
| 2190 | + width: 45%; | |
| 2191 | + } | |
| 2192 | + .footer-6 .col-md-4:not(:first-of-type) { | |
| 2193 | + width: 27.5%; | |
| 2194 | + } | |
| 2195 | +} | |
| 2196 | + | |
| 2197 | +@media (min-width: 765px) { | |
| 2198 | + .footer-6 .col-md-4:first-of-type { | |
| 2199 | + border-right:2px solid white; | |
| 2200 | + } | |
| 2201 | +} | |
| 2202 | +.conditions-de-travail { | |
| 2203 | + display: flex; | |
| 2204 | + flex-direction: column; | |
| 2205 | + font-size: 16px; | |
| 2206 | + margin-bottom: 1.5rem; | |
| 2207 | +} | |
| 2208 | + | |
| 2209 | +.ct-row { | |
| 2210 | + display: flex; | |
| 2211 | + gap: 20px; | |
| 2212 | +} | |
| 2213 | + | |
| 2214 | +.ct-label { | |
| 2215 | + width: 300px; | |
| 2216 | + font-weight: bold; | |
| 2217 | + color:#000; | |
| 2218 | + font-size:19px; | |
| 2219 | +} | |
| 2220 | + | |
| 2221 | +.ct-value { | |
| 2222 | + font-size:19px; | |
| 2223 | + color: #000000; | |
| 2224 | +} | |
| 2225 | + | |
| 2226 | +.informations-de-base { | |
| 2227 | + display: flex; | |
| 2228 | + flex-wrap: wrap; | |
| 2229 | + gap: 25px; | |
| 2230 | + align-items: center; | |
| 2231 | + margin-bottom: 1.5rem; | |
| 2232 | + background: #16375E10 ; | |
| 2233 | + width: 300%; | |
| 2234 | + margin-left: -100%; | |
| 2235 | + padding-left: 100%; | |
| 2236 | + padding-top: 15px; | |
| 2237 | + padding-bottom: 15px; | |
| 2238 | +} | |
| 2239 | + | |
| 2240 | +.informations-de-base .info-item { | |
| 2241 | + display: flex; | |
| 2242 | + align-items: center; | |
| 2243 | + gap: 10px; | |
| 2244 | +} | |
| 2245 | + | |
| 2246 | +.informations-de-base .icon svg { | |
| 2247 | + display: inline-block; | |
| 2248 | + vertical-align: middle; | |
| 2249 | +} | |
| 2250 | + | |
| 2251 | +.informations-de-base .info-text { | |
| 2252 | + font-size: 16px; | |
| 2253 | + color: #16375e; | |
| 2254 | + padding-top: 12px; | |
| 2255 | +} | |
| 2256 | + | |
| 2257 | +.apply-buttons { | |
| 2258 | + display: flex; | |
| 2259 | + justify-content: space-between; | |
| 2260 | + flex-wrap: wrap; | |
| 2261 | + gap: 0px; | |
| 2262 | + margin-top: 70px; | |
| 2263 | + width: 300%; | |
| 2264 | + margin-left: -100%; | |
| 2265 | + padding: 30px 100% 200px 100%; | |
| 2266 | + margin-bottom:-170px; | |
| 2267 | +} | |
| 2268 | +.apply-buttons-1 h2, | |
| 2269 | +.apply-buttons-2 h2 { | |
| 2270 | + color: #004071; | |
| 2271 | + font-size: 18px; | |
| 2272 | + font-weight: bold; | |
| 2273 | +} | |
| 2274 | +.apply-buttons-2 h2 { | |
| 2275 | + margin-bottom: 27px; | |
| 2276 | +} | |
| 2277 | +.apply-buttons .application_button.button { | |
| 2278 | + background-color: #004071; | |
| 2279 | + color: #fff; | |
| 2280 | + border: 2px solid #004071; | |
| 2281 | + border-radius: 5px; | |
| 2282 | + font-weight: bold; | |
| 2283 | + font-size: 20px; | |
| 2284 | + width:fit-content; | |
| 2285 | + height:min-content; | |
| 2286 | + padding:9px 25px; | |
| 2287 | + box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3); | |
| 2288 | + margin-bottom:10px; | |
| 2289 | +} | |
| 2290 | +.apply-buttons .application_button.button:hover { | |
| 2291 | + background-color: transparent; | |
| 2292 | + color: #004071; | |
| 2293 | +} | |
| 2294 | + | |
| 2295 | +.apply-buttons .apply-buttons-2 a { | |
| 2296 | + background-color: #004071; | |
| 2297 | + color: #fff; | |
| 2298 | + border: 2px solid #004071; | |
| 2299 | + border-radius: 5px; | |
| 2300 | + font-weight: bold; | |
| 2301 | + font-size: 20px; | |
| 2302 | + padding: 5px 15px; | |
| 2303 | + box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3); | |
| 2304 | +} | |
| 2305 | +.apply-buttons .apply-buttons-2 a:hover { | |
| 2306 | + background-color: transparent; | |
| 2307 | + color: #004071; | |
| 2308 | +} | |
| 2309 | +.job-manager-single-alert-link{ | |
| 2310 | + margin-top: -150px; | |
| 2311 | +} | |
| 2312 | +.job-manager-single-alert-link a{ | |
| 2313 | + color: #57b4b0; | |
| 2314 | + font-weight: 600; | |
| 2315 | +} | |
| 2316 | +.job-manager-single-alert-link a:hover{ | |
| 2317 | + color: #F67E4A; | |
| 2318 | +} | |
| 2319 | +.single-job_listing section{ | |
| 2320 | + padding-bottom: 40px !important; | |
| 2321 | +} | |
| 2322 | + | |
| 2323 | +.liste-jobs-tout ul.job_listings{ | |
| 2324 | + border-top: none !important; | |
| 2325 | + padding: 10px 7% 50px ; | |
| 2326 | + border: none !important; | |
| 2327 | + background:#c6c6b830; | |
| 2328 | +} | |
| 2329 | + | |
| 2330 | +.liste-jobs-tout h2{ | |
| 2331 | + width: 300%; | |
| 2332 | + margin-left: -100%; | |
| 2333 | + padding: 40px 100% 20px 100%; | |
| 2334 | + background: #EFF2F4; | |
| 2335 | + margin-bottom: 0px; | |
| 2336 | + margin-top: -60px; | |
| 2337 | + font-size: 35px; | |
| 2338 | +} | |
| 2339 | + | |
| 2340 | +.liste-jobs-tout .job_filters .showing_jobs{ | |
| 2341 | + border-top: none; | |
| 2342 | +} | |
| 2343 | + | |
| 2344 | +.liste-jobs-tout .job-type-location { | |
| 2345 | + display: flex; | |
| 2346 | + flex-wrap: nowrap; | |
| 2347 | + align-items: center; | |
| 2348 | +} | |
| 2349 | +.liste-jobs-tout .job-listing-link-button { | |
| 2350 | + margin-left: auto; | |
| 2351 | + background: transparent; | |
| 2352 | + border: 2px solid #004071 !important; | |
| 2353 | + color: #004071; | |
| 2354 | + border-radius: 5px; | |
| 2355 | + margin-bottom: 20px; | |
| 2356 | + padding: 5px 10px !important; | |
| 2357 | + font-size: 19px; | |
| 2358 | +} | |
| 2359 | + | |
| 2360 | +.liste-jobs-tout .job-listing-link-button:hover, .liste-jobs-tout .job-listing-link-button:active, .liste-jobs-tout .job-listing-link-button:focus{ | |
| 2361 | + background: #004071; | |
| 2362 | + color: #fff; | |
| 2363 | +} | |
| 2364 | +.liste-jobs-tout .job-title h3 { | |
| 2365 | + font-size: 25px; | |
| 2366 | + margin-top: 20px; | |
| 2367 | + color: #004071; | |
| 2368 | + font-weight: bold; | |
| 2369 | + max-width: 55vw; | |
| 2370 | +} | |
| 2371 | + | |
| 2372 | +.liste-jobs-tout ul.job_listings li.job_listing { | |
| 2373 | + padding: 0px 10px 10px 0px ; | |
| 2374 | + border-bottom: 1px solid #16375E20; | |
| 2375 | +} | |
| 2376 | +.liste-jobs-tout .search_jobs{ | |
| 2377 | + width: 300%; | |
| 2378 | + margin-left: -100%; | |
| 2379 | + padding: 30px 107% 30px; | |
| 2380 | + background:#7cafde82 | |
| 2381 | +} | |
| 2382 | +.liste-jobs-tout .job_types{ | |
| 2383 | + margin-top: -50px; | |
| 2384 | + width: 300%; | |
| 2385 | + margin-left: -100%; | |
| 2386 | + padding: 0 107% 0 !important; | |
| 2387 | +} | |
| 2388 | + | |
| 2389 | +.liste-jobs-tout .showing_jobs{ | |
| 2390 | + width: 300%; | |
| 2391 | + margin-left: -100%; | |
| 2392 | + margin-top:10px; | |
| 2393 | + padding: 0 107% 0; | |
| 2394 | +} | |
| 2395 | +.liste-jobs-tout .search_submit input{ | |
| 2396 | + background: #004071 !important; | |
| 2397 | + border: 2px solid #004071; | |
| 2398 | + color: #fff !important; | |
| 2399 | + margin-right: 10px; | |
| 2400 | + border-radius: 5px; | |
| 2401 | + width: auto; | |
| 2402 | + height:auto; | |
| 2403 | + padding:0px 10px !important; | |
| 2404 | + font-size:19px; | |
| 2405 | +} | |
| 2406 | +.liste-jobs-tout .search_submit input:hover{ | |
| 2407 | + background:#fff !important; | |
| 2408 | + color: #004071 !important; | |
| 2409 | +} | |
| 2410 | + | |
| 2411 | +.job_listing-template-default.single-job_listing div.main-container div.container div.col-sm-10.col-md-8.col-sm-offset-1.col-md-offset-2{ | |
| 2412 | + margin-left:0px; | |
| 2413 | + margin-right:0px; | |
| 2414 | + width: auto; | |
| 2415 | +} | |
| 2416 | + | |
| 2417 | +.boxed.boxed--lg.border--round.bg--white:has(.cat-hero-text){ | |
| 2418 | + background: none; | |
| 2419 | + padding-left: 0px; | |
| 2420 | + padding-right: 0px; | |
| 2421 | + padding-bottom: 0px; | |
| 2422 | + margin-top: 5vh; | |
| 2423 | + margin-bottom: 0px; | |
| 2424 | + min-width: 100vw; | |
| 2425 | + min-height: 15vh; | |
| 2426 | +} | |
| 2427 | +.cat-hero-s-text{ | |
| 2428 | + color: #ffffff !important; | |
| 2429 | + font-size: 35px; | |
| 2430 | + line-height:100px; | |
| 2431 | +} | |
| 2432 | +.cat-hero-b-text{ | |
| 2433 | + color: #ffffff !important; | |
| 2434 | + font-size: 50px; | |
| 2435 | + line-height: 50px; | |
| 2436 | + font-weight: bold; | |
| 2437 | +} | |
| 2438 | +.col-md-10.col-md-offset-1.col-sm-12:has(.cat-hero-text){ | |
| 2439 | + margin-left: 0px; | |
| 2440 | +} | |
| 2441 | + | |
| 2442 | +footer::after { | |
| 2443 | + content: "© Gouvernement du Québec - 2025"; | |
| 2444 | + display: block; | |
| 2445 | + text-align: center; | |
| 2446 | + background-color: #fff; | |
| 2447 | + background-image: url('https://chum.carrieresante.gouv.qc.ca/wp-content/uploads/2025/06/logo_chum.png'); | |
| 2448 | + background-repeat: no-repeat; | |
| 2449 | + background-position: center 20px; | |
| 2450 | + background-size: 95px auto; | |
| 2451 | + padding-top: 100px; | |
| 2452 | + padding-bottom: 10px; | |
| 2453 | + font-size: 14px; | |
| 2454 | + font-weight: 500; | |
| 2455 | + margin-top: 30px; | |
| 2456 | + margin-bottom:-25px; | |
| 2457 | + padding-left: 40px; | |
| 2458 | + padding-right: 40px; | |
| 2459 | + white-space: pre-line; | |
| 2460 | + position: relative; | |
| 2461 | +} | |
| 2462 | + | |
| 2463 | +.job-manager-single-alert-link{ | |
| 2464 | + display: none; | |
| 2465 | +} | |
| 2466 | + | |
| 2467 | +@media only screen and (max-width: 600px) { | |
| 2468 | + .liste-jobs-tout h2{ | |
| 2469 | + margin-top: -160px; | |
| 2470 | + } | |
| 2471 | + .single-job_listing .a2a_kit::before { | |
| 2472 | + content: 'Partager\A' !important; | |
| 2473 | + white-space:pre-line !important; | |
| 2474 | + } | |
| 2475 | + .single-job_listing .a2a_kit{ | |
| 2476 | + display: block !important; | |
| 2477 | + } | |
| 2478 | + .apply-buttons .application_button.button{ | |
| 2479 | + min-width:175px; | |
| 2480 | + } | |
| 2481 | + .conditions-de-travail { | |
| 2482 | + display: block; | |
| 2483 | + } | |
| 2484 | + .ct-row { | |
| 2485 | + display: block; | |
| 2486 | + } | |
| 2487 | + .ct-value::before { | |
| 2488 | + content:'\A'; | |
| 2489 | + white-space:pre-line; | |
| 2490 | + } | |
| 2491 | + .job_description { | |
| 2492 | + font-size: 16px; | |
| 2493 | + } | |
| 2494 | + .single_job_listing .job_description h2 { | |
| 2495 | + padding-top: 10px; | |
| 2496 | + } | |
| 2497 | + .informations-de-base { | |
| 2498 | + display:block; | |
| 2499 | + } | |
| 2500 | + .article__title.text-center h1 { | |
| 2501 | + font-size: 17px; | |
| 2502 | + padding-bottom:170px; | |
| 2503 | + height:36vh; | |
| 2504 | + } | |
| 2505 | + .liste-jobs-tout .job-listing-link span { | |
| 2506 | + display:block; | |
| 2507 | + margin: 10px 0; | |
| 2508 | + padding:0px; | |
| 2509 | + font-size:16px !important; | |
| 2510 | + line-height:20px; | |
| 2511 | + } | |
| 2512 | + .liste-jobs-tout ul.job_listings li.job_listing a.job-listing-link-button{ | |
| 2513 | + margin-top:5px; | |
| 2514 | + margin-bottom:2px; | |
| 2515 | + text-align: center; | |
| 2516 | + } | |
| 2517 | + .liste-jobs-tout .job-type-location{ | |
| 2518 | + display: block; | |
| 2519 | + } | |
| 2520 | + .liste-jobs-tout .job-listing-link span { | |
| 2521 | + display: flex; | |
| 2522 | + align-items: flex-start; | |
| 2523 | + gap: 6px; | |
| 2524 | + } | |
| 2525 | + .liste-jobs-tout .job-type-location .job-type{ | |
| 2526 | + margin-right:0px; | |
| 2527 | + } | |
| 2528 | + .liste-jobs-tout ul.job_listings li.job_listing a{ | |
| 2529 | + min-width: 100%; | |
| 2530 | + } | |
| 2531 | + .liste-jobs-tout .job-title h3{ | |
| 2532 | + max-width: 100% !important; | |
| 2533 | + font-size:18px; | |
| 2534 | + } | |
| 2535 | + .liste-jobs-tout .job_types { | |
| 2536 | + margin-top: 0px !important; | |
| 2537 | + background-color:#7cafde82 !important; | |
| 2538 | + } | |
| 2539 | + .image-container .text span { | |
| 2540 | + font-size: 19px; | |
| 2541 | + } | |
| 2542 | + .image-container .text span | |
| 2543 | + .bar .logo { | |
| 2544 | + max-height: 90px; | |
| 2545 | + margin-top: 0.5px; | |
| 2546 | + } | |
| 2547 | + .bar__module a.btn--demo { | |
| 2548 | + width:100%; | |
| 2549 | + } | |
| 2550 | + .hero-text span:nth-child(2) { | |
| 2551 | + line-height: 40px !important; | |
| 2552 | + } | |
| 2553 | + .home-jobs .wpb_wrapper:has(.wpb_wrapper .toutes-offres) { | |
| 2554 | + min-height:170px; | |
| 2555 | + } | |
| 2556 | + .home-jobs .job-title h3 { | |
| 2557 | + font-size: 18px; | |
| 2558 | + } | |
| 2559 | + .home-jobs .job-card { | |
| 2560 | + width: 100px; | |
| 2561 | + min-width: 275px; | |
| 2562 | + min-height: 400px; | |
| 2563 | + } | |
| 2564 | + .home-jobs .job-listing-link-button { | |
| 2565 | + width: 100%; | |
| 2566 | + margin: 0px !important; | |
| 2567 | + padding: 0; | |
| 2568 | + } | |
| 2569 | + .home-jobs .job-type-location span { | |
| 2570 | + font-size: 16px; | |
| 2571 | + } | |
| 2572 | + .home-jobs .job_listings { | |
| 2573 | + gap: 7px; | |
| 2574 | + } | |
| 2575 | + .home-jobs { | |
| 2576 | + padding:0; | |
| 2577 | + } | |
| 2578 | + .home-jobs .wpb_column:has(.job-listing-wrapper){ | |
| 2579 | + margin-left:-30px; | |
| 2580 | + width: 120%; | |
| 2581 | + } | |
| 2582 | + .banner-container { | |
| 2583 | + padding: 10px 0 !important; | |
| 2584 | + } | |
| 2585 | + .home-chezNous-section .chezNous-btns { | |
| 2586 | + bottom: 30%; | |
| 2587 | + left: 57%; | |
| 2588 | + } | |
| 2589 | + .home-chezNous-section .chezNous-btn { | |
| 2590 | + padding: 0px 2px; | |
| 2591 | + font-size: 16px; | |
| 2592 | + font-weight: 900; | |
| 2593 | + } | |
| 2594 | + .temoignage-section{ | |
| 2595 | + margin-left:-30px; | |
| 2596 | + margin-right:-30px; | |
| 2597 | + margin-top:-10px; | |
| 2598 | + } | |
| 2599 | + h2{ | |
| 2600 | + font-size: 22px; | |
| 2601 | + } | |
| 2602 | + .temoignage-section ul li{ | |
| 2603 | + font-size: 16px; | |
| 2604 | + } | |
| 2605 | + .location-n-cat .location-n-cat:has(.search_keywords) { | |
| 2606 | + display: inline; | |
| 2607 | + } | |
| 2608 | + ul.job_types li label { | |
| 2609 | + display: flex; | |
| 2610 | + align-items: flex-start; | |
| 2611 | + } | |
| 2612 | + ul.job_types li input[type="checkbox"] { | |
| 2613 | + margin-top: 0.2em; | |
| 2614 | + margin-right: 0.5em; | |
| 2615 | + flex-shrink: 0; | |
| 2616 | + } | |
| 2617 | + ul.job_types li label::after { | |
| 2618 | + content: ""; | |
| 2619 | + display: block; | |
| 2620 | + } | |
| 2621 | + .liste-jobs-tout .job_filters .showing_jobs span{ | |
| 2622 | + display: inline-block; | |
| 2623 | + line-height: 20px; | |
| 2624 | + padding: 10px 0 1-0px 0; | |
| 2625 | + } | |
| 2626 | + .cat-hero-s-text { | |
| 2627 | + font-size: 20px; | |
| 2628 | + line-height:0; | |
| 2629 | + } | |
| 2630 | + .cat-hero-b-text { | |
| 2631 | + font-size: 25px; | |
| 2632 | + line-height: 30px; | |
| 2633 | + } | |
| 2634 | + .boxed.boxed--lg.border--round.bg--white:has(.cat-hero-text) { | |
| 2635 | + margin-top: 0; | |
| 2636 | + margin-bottom: 20px; | |
| 2637 | + min-width: 50vw; | |
| 2638 | + } | |
| 2639 | + .liste-jobs-tout h2 { | |
| 2640 | + font-size: 25px; | |
| 2641 | + padding-bottom:0px; | |
| 2642 | + } | |
| 2643 | + | |
| 2644 | + .wpcf7-checkbox .wpcf7-list-item { | |
| 2645 | + width: 100%; | |
| 2646 | + } | |
| 2647 | + .wpcf7-form-control.wpcf7-text, .wpcf7-form-control.wpcf7-email { | |
| 2648 | + width: 100%; | |
| 2649 | + } | |
| 2650 | + h1, .h1 { | |
| 2651 | + font-size: 2em; | |
| 2652 | + line-height: 1em; | |
| 2653 | + } | |
| 2654 | +} | |
| 2655 | + | |
| 2656 | +.single-job_listing .a2a_kit svg path { | |
| 2657 | + fill: #004071 !important; | |
| 2658 | +} | |
| 2659 | +.single-job_listing .a2a_kit .a2a_svg { | |
| 2660 | + background: none !important; | |
| 2661 | +} | |
| 2662 | +.single-job_listing .is-partagez { | |
| 2663 | + display: none; | |
| 2664 | +} | |
| 2665 | +.single-job_listing .a2a_kit::before { | |
| 2666 | + content: "Partager "; | |
| 2667 | + margin-right: 8px; | |
| 2668 | + font-size:18px; | |
| 2669 | + font-weight: bold; | |
| 2670 | + color: #8A898A; | |
| 2671 | +} | |
| 2672 | +.single-job_listing .a2a_kit { | |
| 2673 | + display: flex; | |
| 2674 | + justify-content: flex-end; | |
| 2675 | + align-items: center; | |
| 2676 | + margin-right: 100px; | |
| 2677 | +} | |
| 2678 | +.single-job_listing .a2a_button_twitter { | |
| 2679 | + display: none !important; | |
| 2680 | +} | |
| 2681 | +.statut-emploi-TP { | |
| 2682 | + display: none !important; | |
| 2683 | +} | |
| 2684 | +.col-md-11.col-sm-12.text-right.text-left-xs.text-left-sm { | |
| 2685 | + margin-top: -15px !important; | |
| 2686 | + margin-bottom:15px; | |
| 2687 | +} | |
| 2688 | + | |
| 2689 | +.job-info.job-card a:active, .job-info.job-card a:visited, .job-info.job-card a:focus{ | |
| 2690 | + background: transparent !important; | |
| 2691 | +} | |
| 2692 | + | |
| 2693 | +@media screen and (min-width: 600px) and (max-width: 800px) { | |
| 2694 | + .home-jobs .wpb_wrapper:has(.wpb_wrapper .toutes-offres) { | |
| 2695 | + min-height: 200px; | |
| 2696 | + } | |
| 2697 | + | |
| 2698 | + .toutes-offres { | |
| 2699 | + width: 50%; | |
| 2700 | + } | |
| 2701 | + | |
| 2702 | + .toutes-offres a { | |
| 2703 | + width: 50%; | |
| 2704 | + } | |
| 2705 | + .home-chezNous-section .chezNous-btns { | |
| 2706 | + bottom: 45%; | |
| 2707 | + left: 62%; | |
| 2708 | + } | |
| 2709 | + .home-chezNous-section .chezNous-btn { | |
| 2710 | + padding: 0px 2px; | |
| 2711 | + font-size: 25px; | |
| 2712 | + font-weight: 900; | |
| 2713 | + } | |
| 2714 | + .liste-jobs-tout .job_types { | |
| 2715 | + margin-top: 0px !important; | |
| 2716 | + background-color:#7cafde82 !important; | |
| 2717 | + } | |
| 2718 | + .liste-jobs-tout .job-listing-link span { | |
| 2719 | + display: block; | |
| 2720 | + margin: 10px 0; | |
| 2721 | + padding:0px; | |
| 2722 | + font-size:16px !important; | |
| 2723 | + line-height:20px; | |
| 2724 | + } | |
| 2725 | + .liste-jobs-tout ul.job_listings li.job_listing a.job-listing-link-button{ | |
| 2726 | + margin-top:5px; | |
| 2727 | + margin-bottom:2px; | |
| 2728 | + text-align: center; | |
| 2729 | + } | |
| 2730 | + .liste-jobs-tout .job-type-location{ | |
| 2731 | + display: block; | |
| 2732 | + } | |
| 2733 | + .liste-jobs-tout .job-listing-link span { | |
| 2734 | + display: flex; | |
| 2735 | + align-items: flex-start; | |
| 2736 | + gap: 6px; | |
| 2737 | + } | |
| 2738 | + .liste-jobs-tout .job-type-location .job-type{ | |
| 2739 | + margin-right:0px; | |
| 2740 | + } | |
| 2741 | + .liste-jobs-tout ul.job_listings li.job_listing a{ | |
| 2742 | + min-width: 100%; | |
| 2743 | + } | |
| 2744 | + .liste-jobs-tout .job-title h3{ | |
| 2745 | + max-width: 100% !important; | |
| 2746 | + font-size:25px; | |
| 2747 | + } | |
| 2748 | + .liste-jobs-tout .showing_jobs { | |
| 2749 | + margin-top:0px; | |
| 2750 | + } | |
| 2751 | + .wpcf7-checkbox .wpcf7-list-item { | |
| 2752 | + width: 50%; | |
| 2753 | + } | |
| 2754 | + .wpcf7-form-control.wpcf7-text, .wpcf7-form-control.wpcf7-email { | |
| 2755 | + width: 100%; | |
| 2756 | + } | |
| 2757 | +} | |
| 2758 | + | |
| 2759 | +@media (max-width: 768px) { | |
| 2760 | + .cat-hero-text{ | |
| 2761 | + padding-top:40vh !important; | |
| 2762 | + } | |
| 2763 | + .cat-hero-text{ | |
| 2764 | + margin-left: -30px !important; | |
| 2765 | + padding-top: 50px; | |
| 2766 | + } | |
| 2767 | + .right-section { | |
| 2768 | + margin:0px !important; | |
| 2769 | + } | |
| 2770 | + .col-sm-6:first-of-type{ | |
| 2771 | + border-left:0px !important; | |
| 2772 | + } | |
| 2773 | +} | |
| 2774 | + | |
| 2775 | +.elementor hr{ | |
| 2776 | + margin:25px 0px 10px 0px!important; | |
| 2777 | +} | |
| 2778 | +footer:not(.bg--primary):not(.bg--dark) a{ | |
| 2779 | + color:#fff; | |
| 2780 | +} | |
| 2781 | + | |
| 2782 | +.job-list { | |
| 2783 | + list-style: none; | |
| 2784 | + padding: 0; | |
| 2785 | + font-size: 30px; | |
| 2786 | + font-weight: 300; | |
| 2787 | + line-height: 1.6; | |
| 2788 | + } | |
| 2789 | +.right-section { | |
| 2790 | + display: flex; | |
| 2791 | + flex-direction: column; | |
| 2792 | + justify-content: flex-start; | |
| 2793 | + gap: 35px; | |
| 2794 | + margin-left:50px; | |
| 2795 | +} | |
| 2796 | +@media (max-width: 900px) { | |
| 2797 | + .container { | |
| 2798 | + flex-direction: column; | |
| 2799 | + gap: 40px; | |
| 2800 | + } | |
| 2801 | + .left-section, .right-section { | |
| 2802 | + max-width: 100%; | |
| 2803 | + } | |
| 2804 | +} | |
| 2805 | + | |
| 2806 | +.menu-horizontal > .dropdown > .dropdown__trigger::after { | |
| 2807 | + margin-left: 4px; | |
| 2808 | + content: ""; | |
| 2809 | + display: inline-block; | |
| 2810 | + width: 20px; | |
| 2811 | + height: 20px; | |
| 2812 | + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230066b3'%3E%3Cpath d='M12 13.172l4.95-4.95 1.414 1.414L12 16 5.636 9.636l1.414-1.414L12 13.172z'/%3E%3Cpath d='M12 19.172l4.95-4.95 1.414 1.414L12 22 5.636 15.636l1.414-1.414L12 19.172z'/%3E%3C/svg%3E"); | |
| 2813 | + background-size: contain; | |
| 2814 | + background-repeat: no-repeat; | |
| 2815 | +} | |
| 2816 | +.container{ | |
| 2817 | + width:90vw; | |
| 2818 | + margin-left:5vw; | |
| 2819 | +} | |
| 2820 | +.col-sm-6:first-of-type{ | |
| 2821 | + border-right:1px solid white; | |
| 2822 | + | |
| 2823 | +} | |
| 2824 | +@media (min-width: 900px){ | |
| 2825 | + .col-sm-6:first-of-type{ | |
| 2826 | + width:60%; | |
| 2827 | + padding-bottom:100px; | |
| 2828 | + } | |
| 2829 | +} | |
| 2830 | +@media (min-width: 900px) { | |
| 2831 | + .col-sm-6 { | |
| 2832 | + width:40%; | |
| 2833 | + } | |
| 2834 | +} | |
| 2835 | + | |
| 2836 | +.left-section .link a { | |
| 2837 | + line-height: 1.2em; | |
| 2838 | + display: inline-block; | |
| 2839 | +} | |
| 2840 | +.footer-s .link{ | |
| 2841 | + font-size: 20px ; | |
| 2842 | +} | |
| 2843 | +.left-section { | |
| 2844 | + line-height: 2.2em; | |
| 2845 | + display: inline-block; | |
| 2846 | +} | |
| 2847 | + | |
| 2848 | + | |
| 2849 | +.nav-btn { | |
| 2850 | + border: none; | |
| 2851 | +} | |
| 2852 | +@media (max-width: 800px){ | |
| 2853 | + .left-section a { | |
| 2854 | + font-size:15px; | |
| 2855 | + } | |
| 2856 | + .footer-s .link{ | |
| 2857 | + font-size: 15px ; | |
| 2858 | + } | |
| 2859 | + .right-section { | |
| 2860 | + gap:0;} | |
| 2861 | + | |
| 2862 | + .footer-t { | |
| 2863 | + font-size:20px ; | |
| 2864 | + white-space:nowrap; | |
| 2865 | + } | |
| 2866 | + .col-sm-6:first-of-type{ | |
| 2867 | + border:none; | |
| 2868 | + } | |
| 2869 | +} | |
| 2870 | + | |
| 2871 | +@media (max-width: 767px){ | |
| 2872 | +.col-sm-6:first-of-type{ | |
| 2873 | + border:none; | |
| 2874 | + } | |
| 2875 | +} | |
| 2876 | + | |
| 2877 | +@media screen and (min-width: 1024px) and (max-width: 1700px) { | |
| 2878 | + .slider{ | |
| 2879 | + width:500px; | |
| 2880 | + height:400px; | |
| 2881 | + } | |
| 2882 | +} | |
| 2883 | +@media (min-width: 600px) and (max-width: 1300px) { | |
| 2884 | + .article__title.text-center h1 { | |
| 2885 | + padding-bottom: 240px; | |
| 2886 | + font-size: 30px; | |
| 2887 | + } | |
| 2888 | +} | |
| 2889 | +</style> | |
| 2890 | + <!-- Fonts Plugin CSS - https://fontsplugin.com/ --> | |
| 2891 | + <style> | |
| 2892 | + /* Cached: August 18, 2026 at 1:23am */ | |
| 2893 | +/* cyrillic-ext */ | |
| 2894 | +@font-face { | |
| 2895 | + font-family: 'Montserrat'; | |
| 2896 | + font-style: italic; | |
| 2897 | + font-weight: 100; | |
| 2898 | + font-display: swap; | |
| 2899 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2900 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 2901 | +} | |
| 2902 | +/* cyrillic */ | |
| 2903 | +@font-face { | |
| 2904 | + font-family: 'Montserrat'; | |
| 2905 | + font-style: italic; | |
| 2906 | + font-weight: 100; | |
| 2907 | + font-display: swap; | |
| 2908 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2909 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 2910 | +} | |
| 2911 | +/* vietnamese */ | |
| 2912 | +@font-face { | |
| 2913 | + font-family: 'Montserrat'; | |
| 2914 | + font-style: italic; | |
| 2915 | + font-weight: 100; | |
| 2916 | + font-display: swap; | |
| 2917 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2918 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 2919 | +} | |
| 2920 | +/* latin-ext */ | |
| 2921 | +@font-face { | |
| 2922 | + font-family: 'Montserrat'; | |
| 2923 | + font-style: italic; | |
| 2924 | + font-weight: 100; | |
| 2925 | + font-display: swap; | |
| 2926 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2927 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 2928 | +} | |
| 2929 | +/* latin */ | |
| 2930 | +@font-face { | |
| 2931 | + font-family: 'Montserrat'; | |
| 2932 | + font-style: italic; | |
| 2933 | + font-weight: 100; | |
| 2934 | + font-display: swap; | |
| 2935 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 2936 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 2937 | +} | |
| 2938 | +/* cyrillic-ext */ | |
| 2939 | +@font-face { | |
| 2940 | + font-family: 'Montserrat'; | |
| 2941 | + font-style: italic; | |
| 2942 | + font-weight: 200; | |
| 2943 | + font-display: swap; | |
| 2944 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2945 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 2946 | +} | |
| 2947 | +/* cyrillic */ | |
| 2948 | +@font-face { | |
| 2949 | + font-family: 'Montserrat'; | |
| 2950 | + font-style: italic; | |
| 2951 | + font-weight: 200; | |
| 2952 | + font-display: swap; | |
| 2953 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2954 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 2955 | +} | |
| 2956 | +/* vietnamese */ | |
| 2957 | +@font-face { | |
| 2958 | + font-family: 'Montserrat'; | |
| 2959 | + font-style: italic; | |
| 2960 | + font-weight: 200; | |
| 2961 | + font-display: swap; | |
| 2962 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2963 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 2964 | +} | |
| 2965 | +/* latin-ext */ | |
| 2966 | +@font-face { | |
| 2967 | + font-family: 'Montserrat'; | |
| 2968 | + font-style: italic; | |
| 2969 | + font-weight: 200; | |
| 2970 | + font-display: swap; | |
| 2971 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2972 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 2973 | +} | |
| 2974 | +/* latin */ | |
| 2975 | +@font-face { | |
| 2976 | + font-family: 'Montserrat'; | |
| 2977 | + font-style: italic; | |
| 2978 | + font-weight: 200; | |
| 2979 | + font-display: swap; | |
| 2980 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 2981 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 2982 | +} | |
| 2983 | +/* cyrillic-ext */ | |
| 2984 | +@font-face { | |
| 2985 | + font-family: 'Montserrat'; | |
| 2986 | + font-style: italic; | |
| 2987 | + font-weight: 300; | |
| 2988 | + font-display: swap; | |
| 2989 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2990 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 2991 | +} | |
| 2992 | +/* cyrillic */ | |
| 2993 | +@font-face { | |
| 2994 | + font-family: 'Montserrat'; | |
| 2995 | + font-style: italic; | |
| 2996 | + font-weight: 300; | |
| 2997 | + font-display: swap; | |
| 2998 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 2999 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3000 | +} | |
| 3001 | +/* vietnamese */ | |
| 3002 | +@font-face { | |
| 3003 | + font-family: 'Montserrat'; | |
| 3004 | + font-style: italic; | |
| 3005 | + font-weight: 300; | |
| 3006 | + font-display: swap; | |
| 3007 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3008 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3009 | +} | |
| 3010 | +/* latin-ext */ | |
| 3011 | +@font-face { | |
| 3012 | + font-family: 'Montserrat'; | |
| 3013 | + font-style: italic; | |
| 3014 | + font-weight: 300; | |
| 3015 | + font-display: swap; | |
| 3016 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3017 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3018 | +} | |
| 3019 | +/* latin */ | |
| 3020 | +@font-face { | |
| 3021 | + font-family: 'Montserrat'; | |
| 3022 | + font-style: italic; | |
| 3023 | + font-weight: 300; | |
| 3024 | + font-display: swap; | |
| 3025 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3026 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3027 | +} | |
| 3028 | +/* cyrillic-ext */ | |
| 3029 | +@font-face { | |
| 3030 | + font-family: 'Montserrat'; | |
| 3031 | + font-style: italic; | |
| 3032 | + font-weight: 400; | |
| 3033 | + font-display: swap; | |
| 3034 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3035 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3036 | +} | |
| 3037 | +/* cyrillic */ | |
| 3038 | +@font-face { | |
| 3039 | + font-family: 'Montserrat'; | |
| 3040 | + font-style: italic; | |
| 3041 | + font-weight: 400; | |
| 3042 | + font-display: swap; | |
| 3043 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3044 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3045 | +} | |
| 3046 | +/* vietnamese */ | |
| 3047 | +@font-face { | |
| 3048 | + font-family: 'Montserrat'; | |
| 3049 | + font-style: italic; | |
| 3050 | + font-weight: 400; | |
| 3051 | + font-display: swap; | |
| 3052 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3053 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3054 | +} | |
| 3055 | +/* latin-ext */ | |
| 3056 | +@font-face { | |
| 3057 | + font-family: 'Montserrat'; | |
| 3058 | + font-style: italic; | |
| 3059 | + font-weight: 400; | |
| 3060 | + font-display: swap; | |
| 3061 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3062 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3063 | +} | |
| 3064 | +/* latin */ | |
| 3065 | +@font-face { | |
| 3066 | + font-family: 'Montserrat'; | |
| 3067 | + font-style: italic; | |
| 3068 | + font-weight: 400; | |
| 3069 | + font-display: swap; | |
| 3070 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); | |
| 3071 | + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| 3072 | +} | |
| 3073 | +/* cyrillic-ext */ | |
| 3074 | +@font-face { | |
| 3075 | + font-family: 'Montserrat'; | |
| 3076 | + font-style: italic; | |
| 3077 | + font-weight: 500; | |
| 3078 | + font-display: swap; | |
| 3079 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3080 | + unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; | |
| 3081 | +} | |
| 3082 | +/* cyrillic */ | |
| 3083 | +@font-face { | |
| 3084 | + font-family: 'Montserrat'; | |
| 3085 | + font-style: italic; | |
| 3086 | + font-weight: 500; | |
| 3087 | + font-display: swap; | |
| 3088 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRzS7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3089 | + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 3090 | +} | |
| 3091 | +/* vietnamese */ | |
| 3092 | +@font-face { | |
| 3093 | + font-family: 'Montserrat'; | |
| 3094 | + font-style: italic; | |
| 3095 | + font-weight: 500; | |
| 3096 | + font-display: swap; | |
| 3097 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxi7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3098 | + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; | |
| 3099 | +} | |
| 3100 | +/* latin-ext */ | |
| 3101 | +@font-face { | |
| 3102 | + font-family: 'Montserrat'; | |
| 3103 | + font-style: italic; | |
| 3104 | + font-weight: 500; | |
| 3105 | + font-display: swap; | |
| 3106 | + src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); | |
| 3107 | + unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; | |
| 3108 | +} | |
| 3109 | +/* latin */ | |
| 3110 | +@font-face { | |
| 3111 | + font-family: 'Montserrat'; | |
| 3112 | + font-style: italic; | |
Diff truncated — file too large.