Symfony : – Webpack

Symfony intègre un outil puissant appelé Webpack Encore, qui simplifie la gestion des ressources front-end (JavaScript, CSS, images, etc.). Basé sur Webpack, un module bundler open source, Webpack Encore est spécialement conçu pour faciliter l’intégration avec Symfony. Il permet de regrouper, optimiser, et minifier les fichiers front-end, tout en les rendant facilement accessibles dans vos templates.

Webpack est un outil qui regroupe et optimise les ressources JavaScript, CSS, et bien plus encore. Webpack Encore, quant à lui, est un wrapper simplifié de Webpack, adapté aux besoins de Symfony. Avec Encore, vous pouvez facilement inclure des dépendances front-end, gérer vos assets, et produire des fichiers optimisés pour la production.

Avantages de Webpack Encore :

  • Simplification de la configuration Webpack.
  • Gestion des dépendances CSS et JavaScript via NPM.
  • Optimisation des performances (minification, regroupement).
  • Intégration directe avec Symfony via Twig.

Installation

a) Prérequis

Avant d’installer Webpack Encore, vous devez installer Node.js et son gestionnaire de paquets NPM. Ces outils sont nécessaires pour télécharger et gérer les dépendances front-end.

b) Installation de Webpack Encore

  1. Installez le bundle Webpack Encore :
    composer require symfony/webpack-encore-bundle
    
  2. Initialisez les dépendances front-end avec NPM : npm install
Après l’installation, plusieurs modifications seront apportées à votre projet : Un dossier assets/ sera créé pour contenir les fichiers front-end. Un fichier webpack.config.js sera généré à la racine pour configurer Webpack. Un fichier package.json sera créé pour référencer les dépendances JavaScript. Un répertoire node_modules/ sera ajouté pour stocker les packages front-end téléchargés. Structure des Fichiers Après Installation Contenu du dossier assets/ : app.js : Le fichier principal les dépendances JavaScript et CSS sont importées. styles/app.css : Le fichier principal pour vos styles CSS. bootstrap.js : Initialise l’application Stimulus (utilisée pour les interactions dynamiques). controllers.json et controllers/hello_controller.js : Liés à Stimulus pour des contrôleurs JavaScript modulaires. Utilisation de Webpack Encore a) Importer des ressources dans app.js Le fichier app.js sert de point d’entrée pour regrouper toutes les ressources front-end : // Importer les styles CSS import './styles/app.css'; // Démarrer l'application Stimulus import './bootstrap'; Toutes les dépendances CSS et JavaScript doivent être référencées ici pour être incluses dans les fichiers regroupés. b) Référencer les fichiers dans les templates Twig Après la compilation des fichiers, les assets sont accessibles via les fonctions Twig encore_entry_link_tags et encore_entry_script_tags . Ces fonctions injectent automatiquement les balises nécessaires pour inclure les fichiers CSS et JS dans vos pages. Exemple dans base.html.twig : <!DOCTYPE html> <html> <head> <title>{% block title %}Bienvenue{% endblock %}</title> {% block stylesheets %} {{ encore_entry_link_tags('app') }} {% endblock %} </head> <body> {% block body %}Contenu de la page{% endblock %} {% block javascripts %} {{ encore_entry_script_tags('app') }} {% endblock %} </body> </html> c) Construire les fichiers front-end Mode développement avec surveillance : Pendant le développement, utilisez la commande suivante pour surveiller les modifications des fichiers et les recompiler automatiquement : npm run watch Mode production (optimisé) : Avant de déployer l’application, exécutez une construction optimisée : npm run build Les fichiers générés se trouveront dans public/build/ : app.js : Regroupe tout le JavaScript. app.css : Regroupe tout le CSS. runtime.js : Contient le code utilitaire nécessaire à Webpack. Configuration de Webpack Encore Le fichier webpack.config.js à la racine du projet permet de personnaliser la configuration de Webpack Encore. Par défaut, il inclut les réglages nécessaires pour gérer JavaScript, CSS, images, et polices. Exemple de configuration de base : const Encore = require('@symfony/webpack-encore'); Encore .setOutputPath('public/build/') .setPublicPath('/build') .addEntry('app', './assets/app.js') .enableSingleRuntimeChunk() .cleanupOutputBeforeBuild() .enableSourceMaps(!Encore.isProduction()) .enableVersioning(Encore.isProduction()) .enablePostCssLoader(); module.exports = Encore.getWebpackConfig(); Ajouter des Dépendances Front-End Vous pouvez installer et inclure des bibliothèques CSS et JavaScript avec NPM. Par exemple : a) Installer Bootstrap : npm install bootstrap b) Ajouter Bootstrap dans app.js : // Importer les styles Bootstrap import 'bootstrap/dist/css/bootstrap.min.css'; // Importer les scripts Bootstrap import 'bootstrap'; c) Référencer dans les templates : Les balises Twig injecteront automatiquement les fichiers Bootstrap grâce à encore_entry_* . Bonnes Pratiques Minimiser les dépendances : Installez uniquement les packages nécessaires pour éviter de surcharger node_modules . Versioning : Utilisez l’option enableVersioning() pour invalider le cache en production. Nettoyer les fichiers : La commande cleanupOutputBeforeBuild() supprime les anciens fichiers générés avant chaque nouvelle construction. Documentation Symfony - Webpack Encore Webpack Official Documentation Node.js Official Download Webpack Encore est un outil puissant et flexible pour gérer le frontend dans une application Symfony. Il simplifie la gestion des assets tout en offrant des fonctionnalités avancées comme la minification, le versioning, et la prise en charge des dépendances front-end. En l’adoptant, vous pouvez améliorer la performance, la maintenabilité, et l’apparence de vos applications web.
par admin4460 | Symfony
Systèmes & RéseauxVPS Exemple de Nettoyage et VérificationVPS Exemple de Nettoyage et VérificationProblème Détecté Espace disque critique : 85% d'utilisation (40GB/48GB) Application risquait de planter Site web potentiellement inaccessible VPS Ubuntu 24 avec Docker Diagnostic Étape 1 : Vérification de l'espace disque # Vérifier l'utilisation globale df -h #... 📍 Voir Plus ... DéveloppementSystèmes & Réseaux Tests, Sécurité et CI/CDTests, Sécurité et CI/CDCet article présente une stratégie pour assurer la qualité, la sécurité et le déploiement continu d'une application basée sur Laravel 11 et React 18. La stratégie s'articule autour de quatre piliers fondamentaux : Tests complets et modernes : Une approche... 📍 Voir Plus ... DéveloppementSystèmes & Réseaux Déploiement étape par étape d’une application web sur O2SwitchDéploiement étape par étape d’une application web sur O2SwitchJe vais vous expliquer de façon détaillée comment déployer votre application développée localement (Laravel 11 + React 19 + Axios + MySQL + Bootstrap) sur un hébergement O2Switch. Suivez ces étapes dans l'ordre pour un déploiement réussi. Étape 1: Préparation de... 📍 Voir Plus ... 📍 VOIR PLUS ... 📍
Dashboard Catégories Articles Systèmes & Bureautique Apple Linux Windows Systèmes & Réseaux Développement & Codage Angular Java JavaScript Laravel React JS Symfony HTML et CSS PHP SQL Data Cybersécurité Bug Utilitaires Gestion de projet L’intelligence artificielle Référencement Management E-commerce CMS LMS Design Pédagogie & Formation Pages Ressources GitHub ai Aide-mémoire AI CMS LMS CMS Codes Couleur HTML, HEX, RGB HSL Concepteur Développeur d’Applications Agile Architecture Base de données Cybersécurité Frameworks Laravel Front Back Full Stack Angular C# Data Développement DevOps HTML et CSS Java JavaScript Utilitaires Liens Links المعلوميات و الإتصالات Map Design Conception et prototypage UX / UI Lexique Modéles Comment Clavier Virtuel Banques d’images Banques de sons Banques de videos Communications Clients Création mobile Bureautique Apple Infos Concepteur Développeur d’Applications Modèles pour rédiger des e-mails de service client Modes & Solution de Paiement Web News
© MyCreaNet 2025 Mentions légales Plan du site Gestion des cookies Accessibilité Nom d'utilisateur Mot de passe Mot de passe oublié? Se connecter SuivreSuivreSuivreSuivreSuivre window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-L58BSN4YKD');
{"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\/Divi\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} .et-fb-form__toggle[data-name="et_pb_db_php_code_main_content"] .et-code-snippets-library-btns-wrap:before, .et-fb-form__toggle[data-name="et_pb_db_php_code_main_content"] .et-code-buttons-wrapper:before { content: "\45"; font-size: 27px; color: #ccffcc; font-family: ETModules; cursor: pointer; width: 28px; height: 27px; border-radius: 3px; padding-top: 1px; background-color: rgb(255, 255, 255, 0.2) !important; } .et-fb-form__toggle[data-name="et_pb_db_php_code_main_content"] .et-fb-form__group:nth-of-type(4) { display: none; } jQuery(document).ready(function($) { $(document).on('click', '.et-fb-form__toggle[data-name="et_pb_db_php_code_main_content"] .et-code-snippets-library-btns-wrap, .et-fb-form__toggle[data-name="et_pb_db_php_code_main_content"] .et-code-buttons-wrapper', function(event) { if (event.target !== event.currentTarget) { return; // Exit the function if the click is on a child element } var firstEditor = $('.et-fb-form__toggle[data-name="et_pb_db_php_code_main_content"] .CodeMirror').get(0)?.CodeMirror; if (!firstEditor) { return; } $('.et-fb-form__toggle[data-name="et_pb_db_php_code_main_content"] textarea[name="code_to_render"]').click(); // Enable hidden codemirror var secondEditor = $('.et-fb-form__toggle[data-name="et_pb_db_php_code_main_content"] .CodeMirror').get(1)?.CodeMirror; if (!secondEditor) { return; } var content = firstEditor.getValue(); // Add a random nonce as the first line of content to prevent caching var nonce = Math.random().toString(36).substring(2, 15); content = '/* nonce:' + nonce + ' */\n' + content; secondEditor.setValue(content); }); }); (function() { var file = ["https:\/\/mycreanet.fr\/wp-content\/et-cache\/4964\/et-divi-dynamic-tb-7323-tb-7217-tb-6415-4964-late.css"]; var handle = document.getElementById('divi-style-inline-inline-css'); var location = handle.parentNode; if (0===document.querySelectorAll('link[href="' + file + '"]').length) { var link = document.createElement('link'); link.rel = 'stylesheet'; link.id = 'et-dynamic-late-css'; link.href = file; location.insertBefore(link, handle.nextSibling); } })(); /* Original: https://fonts.googleapis.com/css?family=Merriweather+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic|Merriweather:300,300italic,regular,italic,700,700italic,900,900italic|Adamina:regular|Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin,latin-ext&#038;display=swap *//* User Agent: Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1 */@font-face {font-family: 'Adamina';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwi-3UFQ.ttf) format('truetype');}@font-face {font-family: 'Merriweather';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmScUG33AvQ.ttf) format('truetype');}@font-face {font-family: 'Merriweather';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmTCUG33AvQ.ttf) format('truetype');}@font-face {font-family: 'Merriweather';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmQlV233AvQ.ttf) format('truetype');}@font-face {font-family: 'Merriweather';font-style: italic;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmRrV233AvQ.ttf) format('truetype');}@font-face {font-family: 'Merriweather';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDrgCcaFF3w.ttf) format('truetype');}@font-face {font-family: 'Merriweather';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDr3icaFF3w.ttf) format('truetype');}@font-face {font-family: 'Merriweather';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDrOSAaFF3w.ttf) format('truetype');}@font-face {font-family: 'Merriweather';font-style: normal;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDrdyAaFF3w.ttf) format('truetype');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq2TzdsFxxA.ttf) format('truetype');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3NzdsFxxA.ttf) format('truetype');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3_zdsFxxA.ttf) format('truetype');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0TytsFxxA.ttf) format('truetype');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0qytsFxxA.ttf) format('truetype');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq1NytsFxxA.ttf) format('truetype');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZ_O4ViesC.ttf) format('truetype');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4ViesC.ttf) format('truetype');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZkO4ViesC.ttf) format('truetype');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZfOkViesC.ttf) format('truetype');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZRekViesC.ttf) format('truetype');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZIukViesC.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8WXh0ow.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9WXh0ow.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9WXh0ow.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9WXh0ow.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9WXh0ow.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6WXh0ow.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6WXh0ow.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6WXh0ow.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXh0ow.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Xw5aX8.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Hw5aX8.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Hw5aX8.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aX8.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw5aX8.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu173w5aX8.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM73w5aX8.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr73w5aX8.ttf) format('truetype');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w5aX8.ttf) format('truetype');}/* User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0 */@font-face {font-family: 'Adamina';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwi-3UFg.woff) format('woff');}@font-face {font-family: 'Merriweather';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmScUG33Avc.woff) format('woff');}@font-face {font-family: 'Merriweather';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmTCUG33Avc.woff) format('woff');}@font-face {font-family: 'Merriweather';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmQlV233Avc.woff) format('woff');}@font-face {font-family: 'Merriweather';font-style: italic;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmRrV233Avc.woff) format('woff');}@font-face {font-family: 'Merriweather';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDrgCcaFF3z.woff) format('woff');}@font-face {font-family: 'Merriweather';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDr3icaFF3z.woff) format('woff');}@font-face {font-family: 'Merriweather';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDrOSAaFF3z.woff) format('woff');}@font-face {font-family: 'Merriweather';font-style: normal;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDrdyAaFF3z.woff) format('woff');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq2TzdsFxxM.woff) format('woff');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3NzdsFxxM.woff) format('woff');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3_zdsFxxM.woff) format('woff');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0TytsFxxM.woff) format('woff');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0qytsFxxM.woff) format('woff');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq1NytsFxxM.woff) format('woff');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZ_O4ViesB.woff) format('woff');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4ViesB.woff) format('woff');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZkO4ViesB.woff) format('woff');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZfOkViesB.woff) format('woff');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZRekViesB.woff) format('woff');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZIukViesB.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8WXh0oA.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9WXh0oA.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9WXh0oA.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9WXh0oA.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9WXh0oA.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6WXh0oA.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6WXh0oA.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6WXh0oA.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXh0oA.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Xw5aXw.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Hw5aXw.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Hw5aXw.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXw.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw5aXw.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu173w5aXw.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM73w5aXw.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr73w5aXw.woff) format('woff');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w5aXw.woff) format('woff');}/* User Agent: Mozilla/5.0 (Windows NT 6.3; rv:39.0) Gecko/20100101 Firefox/39.0 */@font-face {font-family: 'Adamina';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwi-3UEA.woff2) format('woff2');}@font-face {font-family: 'Merriweather';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmScUG33AvE.woff2) format('woff2');}@font-face {font-family: 'Merriweather';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmTCUG33AvE.woff2) format('woff2');}@font-face {font-family: 'Merriweather';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmQlV233AvE.woff2) format('woff2');}@font-face {font-family: 'Merriweather';font-style: italic;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmRrV233AvE.woff2) format('woff2');}@font-face {font-family: 'Merriweather';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDrgCcaFF31.woff2) format('woff2');}@font-face {font-family: 'Merriweather';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDr3icaFF31.woff2) format('woff2');}@font-face {font-family: 'Merriweather';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDrOSAaFF31.woff2) format('woff2');}@font-face {font-family: 'Merriweather';font-style: normal;font-weight: 900;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDrdyAaFF31.woff2) format('woff2');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq2TzdsFxxU.woff2) format('woff2');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3NzdsFxxU.woff2) format('woff2');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3_zdsFxxU.woff2) format('woff2');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0TytsFxxU.woff2) format('woff2');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0qytsFxxU.woff2) format('woff2');}@font-face {font-family: 'Merriweather Sans';font-style: italic;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq1NytsFxxU.woff2) format('woff2');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZ_O4ViesH.woff2) format('woff2');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4ViesH.woff2) format('woff2');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZkO4ViesH.woff2) format('woff2');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZfOkViesH.woff2) format('woff2');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZRekViesH.woff2) format('woff2');}@font-face {font-family: 'Merriweather Sans';font-style: normal;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/merriweathersans/v27/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZIukViesH.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8WXh0pg.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9WXh0pg.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9WXh0pg.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9WXh0pg.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9WXh0pg.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6WXh0pg.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6WXh0pg.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6WXh0pg.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXh0pg.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Xw5aXo.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Hw5aXo.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Hw5aXo.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXo.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw5aXo.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu173w5aXo.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM73w5aXo.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr73w5aXo.woff2) format('woff2');}@font-face {font-family: 'Montserrat';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w5aXo.woff2) format('woff2');} /* <![CDATA[ */ var tocplus = {"smooth_scroll":"1","visibility_show":"Afficher","visibility_hide":"Masquer","width":"Auto"}; /* ]]> */ /* <![CDATA[ */ var DIVI = {"item_count":"%d Item","items_count":"%d Items"}; var et_builder_utils_params = {"condition":{"diviTheme":true,"extraTheme":false},"scrollLocations":["app","top"],"builderScrollLocations":{"desktop":"app","tablet":"app","phone":"app"},"onloadScrollLocation":"app","builderType":"fe"}; var et_frontend_scripts = {"builderCssContainerPrefix":"#et-boc","builderCssLayoutPrefix":"#et-boc .et-l"}; var et_pb_custom = {"ajaxurl":"https:\/\/mycreanet.fr\/wp-admin\/admin-ajax.php","images_uri":"https:\/\/mycreanet.fr\/wp-content\/themes\/Divi\/images","builder_images_uri":"https:\/\/mycreanet.fr\/wp-content\/themes\/Divi\/includes\/builder\/images","et_frontend_nonce":"6c38216ff5","subscription_failed":"Veuillez v\u00e9rifier les champs ci-dessous pour vous assurer que vous avez entr\u00e9 les informations correctes.","et_ab_log_nonce":"c9ec72ba9c","fill_message":"S'il vous pla\u00eet, remplissez les champs suivants:","contact_error_message":"Veuillez corriger les erreurs suivantes :","invalid":"E-mail non valide","captcha":"Captcha","prev":"Pr\u00e9c\u00e9dent","previous":"Pr\u00e9c\u00e9dente","next":"Prochaine","wrong_captcha":"Vous avez entr\u00e9 le mauvais num\u00e9ro dans le captcha.","wrong_checkbox":"Case \u00e0 cocher","ignore_waypoints":"no","is_divi_theme_used":"1","widget_search_selector":".widget_search","ab_tests":[],"is_ab_testing_active":"","page_id":"4964","unique_test_id":"","ab_bounce_rate":"5","is_cache_plugin_active":"no","is_shortcode_tracking":"","tinymce_uri":"https:\/\/mycreanet.fr\/wp-content\/themes\/Divi\/includes\/builder\/frontend-builder\/assets\/vendors","accent_color":"#006666","waypoints_options":[]}; var et_pb_box_shadow_elements = []; /* ]]> */ /* <![CDATA[ */ var DiviBlogExtrasFrontendData = {"ajaxurl":"https:\/\/mycreanet.fr\/wp-admin\/admin-ajax.php","ajax_nonce":"4ae0c6aabc","et_theme_accent_color":"#006666"}; /* ]]> */ /* <![CDATA[ */ var mejsL10n = {"language":"fr","strings":{"mejs.download-file":"T\u00e9l\u00e9charger le fichier","mejs.install-flash":"Vous utilisez un navigateur qui n\u2019a pas le lecteur Flash activ\u00e9 ou install\u00e9. Veuillez activer votre extension Flash ou t\u00e9l\u00e9charger la derni\u00e8re version \u00e0 partir de cette adresse\u00a0: https:\/\/get.adobe.com\/flashplayer\/","mejs.fullscreen":"Plein \u00e9cran","mejs.play":"Lecture","mejs.pause":"Pause","mejs.time-slider":"Curseur de temps","mejs.time-help-text":"Utilisez les fl\u00e8ches droite\/gauche pour avancer d\u2019une seconde, haut\/bas pour avancer de dix secondes.","mejs.live-broadcast":"\u00c9mission en direct","mejs.volume-help-text":"Utilisez les fl\u00e8ches haut\/bas pour augmenter ou diminuer le volume.","mejs.unmute":"R\u00e9activer le son","mejs.mute":"Muet","mejs.volume-slider":"Curseur de volume","mejs.video-player":"Lecteur vid\u00e9o","mejs.audio-player":"Lecteur audio","mejs.captions-subtitles":"L\u00e9gendes\/Sous-titres","mejs.captions-chapters":"Chapitres","mejs.none":"Aucun","mejs.afrikaans":"Afrikaans","mejs.albanian":"Albanais","mejs.arabic":"Arabe","mejs.belarusian":"Bi\u00e9lorusse","mejs.bulgarian":"Bulgare","mejs.catalan":"Catalan","mejs.chinese":"Chinois","mejs.chinese-simplified":"Chinois (simplifi\u00e9)","mejs.chinese-traditional":"Chinois (traditionnel)","mejs.croatian":"Croate","mejs.czech":"Tch\u00e8que","mejs.danish":"Danois","mejs.dutch":"N\u00e9erlandais","mejs.english":"Anglais","mejs.estonian":"Estonien","mejs.filipino":"Filipino","mejs.finnish":"Finnois","mejs.french":"Fran\u00e7ais","mejs.galician":"Galicien","mejs.german":"Allemand","mejs.greek":"Grec","mejs.haitian-creole":"Cr\u00e9ole ha\u00eftien","mejs.hebrew":"H\u00e9breu","mejs.hindi":"Hindi","mejs.hungarian":"Hongrois","mejs.icelandic":"Islandais","mejs.indonesian":"Indon\u00e9sien","mejs.irish":"Irlandais","mejs.italian":"Italien","mejs.japanese":"Japonais","mejs.korean":"Cor\u00e9en","mejs.latvian":"Letton","mejs.lithuanian":"Lituanien","mejs.macedonian":"Mac\u00e9donien","mejs.malay":"Malais","mejs.maltese":"Maltais","mejs.norwegian":"Norv\u00e9gien","mejs.persian":"Perse","mejs.polish":"Polonais","mejs.portuguese":"Portugais","mejs.romanian":"Roumain","mejs.russian":"Russe","mejs.serbian":"Serbe","mejs.slovak":"Slovaque","mejs.slovenian":"Slov\u00e9nien","mejs.spanish":"Espagnol","mejs.swahili":"Swahili","mejs.swedish":"Su\u00e9dois","mejs.tagalog":"Tagalog","mejs.thai":"Thai","mejs.turkish":"Turc","mejs.ukrainian":"Ukrainien","mejs.vietnamese":"Vietnamien","mejs.welsh":"Ga\u00e9lique","mejs.yiddish":"Yiddish"}}; /* ]]> */ /* <![CDATA[ */ var _wpmejsSettings = {"pluginPath":"\/wp-includes\/js\/mediaelement\/","classPrefix":"mejs-","stretching":"responsive","audioShortcodeLibrary":"mediaelement","videoShortcodeLibrary":"mediaelement"}; /* ]]> */ .wptpa_song_infrmtn, .wptpa_currenttime, .wptpa_duration, .wptpa_song, .wptpa_dwn_cnt, .wptpa_play_cnt, .wptpa_num, .wptpa_h2, .wptpa_ads{ font-family: 'Roboto', sans-serif; } .wptpa_player { background: #FFFFFF !important; } .wptpa_heading:before, .wptpa_heading:after { background: #000000 !important; } .wptpa_song_infrmtn { color: #000000 !important; } .wptpa_btn .wptpa_icon { fill: #555555; } .wptpa_btn.actv .wptpa_icon, .wptpa_btn:hover .wptpa_icon{ fill: #00D084; } .wptpa_btn:before{ background: #555555 !important; } .wptpa_player .wptpa_seek, .wptpa_player .wptpa_loader { background: #FFDA48 !important; } .wptpa_player .wptpa_seek span, .wptpa_progress { background: #CF2E2E !important; } .wptpa_ads, .wptpa_currenttime, .wptpa_duration { color: #FFFFFF !important; } .wptpa_volume_seek:before { background: #FFDA48 !important; } .wptpa_volume_value { background: #CF2E2E !important; } .wptpa_pllst_itm { border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important; background: #23C5A3 !important; color: #000000 !important; } .wptpa_pllst_itm.crrnt, .wptpa_pllst_itm:hover { background: #FFDA48 !important; color: #000000 !important; } .wptpa_pllst_itm:last-child { border-bottom: 0px solid rgba(255, 255, 255, 0.25) !important; } .wptpa_bars, .wptpa_bars:before, .wptpa_bars:after{ background: #000000 !important; } .wptpa_line { border-color: #000000 !important; } .wptpa_pllst_itm .wptpa_icon { fill: #000000; } .wptpa_dwn_cnt, .wptpa_play_cnt { color: #000000 !important; } .wptpa_scroll_bar { background: #000000 !important; } .et_pb_section_0_tb_header{border-top-width:10px;border-top-color:#000000}.et_pb_section_0_tb_header.et_pb_section{padding-top:0px;padding-bottom:0px;margin-top:0px;margin-bottom:0px;background-color:#1f2937!important}.et_pb_row_0_tb_header{background-color:RGBA(0,0,0,0)}.et_pb_row_0_tb_header.et_pb_row{padding-top:0px!important;margin-top:0px!important;padding-top:0px}.et_pb_row_0_tb_header,body #page-container .et-db #et-boc .et-l .et_pb_row_0_tb_header.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_0_tb_header.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_0_tb_header.et_pb_row{width:100%;max-width:100%}.et_pb_post_title_0_tb_header .et_pb_title_container h1.entry-title,.et_pb_post_title_0_tb_header .et_pb_title_container h2.entry-title,.et_pb_post_title_0_tb_header .et_pb_title_container h3.entry-title,.et_pb_post_title_0_tb_header .et_pb_title_container h4.entry-title,.et_pb_post_title_0_tb_header .et_pb_title_container h5.entry-title,.et_pb_post_title_0_tb_header .et_pb_title_container h6.entry-title{color:#FFFFFF!important;text-align:left;text-shadow:0em 0.1em 0.1em rgba(0,0,0,0.4)}.et_pb_column_1_tb_header{padding-top:40px;padding-bottom:0px}@media only screen and (max-width:980px){.et_pb_section_0_tb_header{border-top-width:10px;border-top-color:#000000}}@media only screen and (min-width:768px) and (max-width:980px){.et_pb_row_0_tb_header{display:none!important}}@media only screen and (max-width:767px){.et_pb_section_0_tb_header{border-top-width:10px;border-top-color:#000000}.et_pb_row_0_tb_header{display:none!important}}.heure{font-size:200%;color:#fff}.date{font-size:150%;color:#fff}.et_pb_button_module_wrapper>a{display:block}code{background-color:#e5edff;color:#000000;padding:5px 15px;margin:0px 15px}.et-l--body>.et_builder_inner_content>.et_pb_section{background-color:#f9f5f3}.et_pb_section_0_tb_body{border-right-color:#60a5fa}.et_pb_section_0_tb_body.et_pb_section{padding-bottom:0px;background-color:#000000!important}.et_pb_section_0_tb_body.section_has_divider.et_pb_bottom_divider .et_pb_bottom_inside_divider{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiMxZjI5MzciPjxwYXRoIGQ9Ik02NDAgMTM5TDAgMHYxNDBoMTI4MFYwTDY0MCAxMzl6IiBmaWxsLW9wYWNpdHk9Ii41Ii8+PHBhdGggZD0iTTY0MCAxMzlMMCA0MnY5OGgxMjgwVjQybC02NDAgOTd6Ii8+PC9nPjwvc3ZnPg==);background-size:100% 100px;bottom:0;height:100px;z-index:1;transform:scale(1,1)}.et_pb_section_0_tb_body.section_has_divider.et_pb_top_divider .et_pb_top_inside_divider{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmOWY1ZjQiPjxwYXRoIGQ9Ik0xMjgwIDE0MFYwSDBsMTI4MCAxNDB6Ii8+PC9nPjwvc3ZnPg==);background-size:100% 100px;top:0;height:100px;z-index:1;transform:scale(1,1)}.et_pb_post_title_0_tb_body .et_pb_title_container .et_pb_title_meta_container,.et_pb_post_title_0_tb_body .et_pb_title_container .et_pb_title_meta_container a{font-weight:600;font-size:18px;color:#175863!important;text-align:justify}.et_pb_post_title_0_tb_body.et_pb_featured_bg,.et_pb_post_title_0_tb_body{border-radius:0 30px 0 30px;overflow:hidden}.et_pb_post_title_0_tb_body .et_pb_title_featured_container img,.et_pb_menu_0_tb_body .et_pb_menu_inner_container>.et_pb_menu__logo-wrap .et_pb_menu__logo img,.et_pb_menu_0_tb_body .et_pb_menu__logo-slot .et_pb_menu__logo-wrap img{height:auto;max-height:none}.et_pb_post_title_0_tb_body .et_pb_title_featured_container{width:50%;max-width:none;text-align:center;margin:auto}.et_pb_post_title_0_tb_body .et_pb_image_wrap{width:auto}div.et_pb_section.et_pb_section_1_tb_body{background-size:5% auto;background-position:left top 13%;background-blend-mode:lighten;background-image:url(https://mycreanet.fr/wp-content/uploads/2021/10/logo-mycreanet-1.png)!important}.et_pb_section_1_tb_body.et_pb_section{padding-top:7rem;padding-bottom:7rem;background-color:#1f2937!important}.et_pb_section_1_tb_body.section_has_divider.et_pb_bottom_divider .et_pb_bottom_inside_divider{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmOWY1ZjQiPjxwYXRoIGQ9Ik0wIDB2MTQwaDEyODBMMCAweiIgZmlsbC1vcGFjaXR5PSIuNSIvPjxwYXRoIGQ9Ik0wIDQydjk4aDEyODBMMCA0MnoiLz48L2c+PC9zdmc+);background-size:100% 100px;bottom:0;height:100px;z-index:1;transform:scale(-1,1)}.et_pb_section_1_tb_body.section_has_divider.et_pb_top_divider .et_pb_top_inside_divider{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiMwMDAwMDAiPjxwYXRoIGQ9Ik02NDAgMTQwTDEyODAgMEgweiIgZmlsbC1vcGFjaXR5PSIuNSIvPjxwYXRoIGQ9Ik02NDAgOThsNjQwLTk4SDB6Ii8+PC9nPjwvc3ZnPg==);background-size:100% 100px;top:0;height:100px;z-index:1;transform:scale(-1,1)}.et_pb_row_1_tb_body,body #page-container .et-db #et-boc .et-l .et_pb_row_1_tb_body.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_1_tb_body.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_1_tb_body.et_pb_row,.et_pb_row_3_tb_body,body #page-container .et-db #et-boc .et-l .et_pb_row_3_tb_body.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_3_tb_body.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_3_tb_body.et_pb_row,.et_pb_row_4_tb_body,body #page-container .et-db #et-boc .et-l .et_pb_row_4_tb_body.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_4_tb_body.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_4_tb_body.et_pb_row{width:100%;max-width:100%}.et_pb_post_title_1_tb_body .et_pb_title_container h1.entry-title,.et_pb_post_title_1_tb_body .et_pb_title_container h2.entry-title,.et_pb_post_title_1_tb_body .et_pb_title_container h3.entry-title,.et_pb_post_title_1_tb_body .et_pb_title_container h4.entry-title,.et_pb_post_title_1_tb_body .et_pb_title_container h5.entry-title,.et_pb_post_title_1_tb_body .et_pb_title_container h6.entry-title{font-weight:700;color:#FFFFFF!important;line-height:2em;text-align:center}.et_pb_post_title_1_tb_body.et_pb_featured_bg,.et_pb_post_title_1_tb_body{border-bottom-width:1px;border-bottom-color:#035875}.et_pb_row_2_tb_body{background-color:#FFFFFF;border-width:1px;border-color:rgba(1,97,112,0.14)}.et_pb_row_2_tb_body.et_pb_row{padding-top:24px!important;padding-right:10px!important;padding-bottom:30px!important;padding-left:10px!important;margin-bottom:10px!important;padding-top:24px;padding-right:10px;padding-bottom:30px;padding-left:10px}.et_pb_row_2_tb_body,body #page-container .et-db #et-boc .et-l .et_pb_row_2_tb_body.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_2_tb_body.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_2_tb_body.et_pb_row{max-width:100%}.et_pb_post_content_0_tb_body{color:#000000!important;font-family:'Georgia',Georgia,"Times New Roman",serif;font-size:18px;line-height:1.8em;text-align:justify;background-color:#FFFFFF;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;margin-top:10px;margin-right:10px;margin-bottom:10px;margin-left:10px}.et_pb_post_content_0_tb_body p{line-height:1.8em}.et_pb_post_content_0_tb_body.et_pb_post_content a{color:#02407a!important}.et_pb_post_content_0_tb_body.et_pb_post_content ul li{color:#474747!important}.et_pb_post_content_0_tb_body ul li{list-style-type:square!important;list-style-position:inside}.et_pb_post_content_0_tb_body ul{padding-left:19px!important}.et_pb_post_content_0_tb_body.et_pb_post_content ol{color:#6B6B6B!important}.et_pb_post_content_0_tb_body ol{padding-left:18px!important}.et_pb_post_content_0_tb_body.et_pb_post_content blockquote{color:#04443b!important}.et_pb_post_content_0_tb_body blockquote{border-width:21px;border-color:#0C71C3}.et_pb_post_content_0_tb_body h1{font-family:'Merriweather Sans',Helvetica,Arial,Lucida,sans-serif;font-weight:700;color:#0C71C3!important;line-height:2em}.et_pb_post_content_0_tb_body h2{font-family:'Merriweather Sans',Helvetica,Arial,Lucida,sans-serif;font-weight:700;font-size:28px;color:#0C71C3!important;line-height:3em}.et_pb_post_content_0_tb_body h3{font-family:'Merriweather Sans',Helvetica,Arial,Lucida,sans-serif;font-weight:700;font-size:26px;color:#12876F!important;line-height:2em}.et_pb_post_content_0_tb_body h4{font-family:'Merriweather Sans',Helvetica,Arial,Lucida,sans-serif;font-weight:700;font-size:20px;color:#C55F0D!important;line-height:2em}.et_pb_post_content_0_tb_body h5{font-family:'Merriweather Sans',Helvetica,Arial,Lucida,sans-serif;font-weight:700;font-size:18px;color:#E06100!important;line-height:2em}.et_pb_post_content_0_tb_body h6{font-family:'Merriweather',Georgia,"Times New Roman",serif;font-weight:700;font-size:30px;color:#6B6B6B!important;letter-spacing:2px;line-height:2em;text-shadow:0em 0.05em 0.1em #FFFFFF}.et_pb_post_title_2_tb_body .et_pb_title_container .et_pb_title_meta_container,.et_pb_post_title_2_tb_body .et_pb_title_container .et_pb_title_meta_container a{font-size:12px;color:#D6D6D6!important;text-align:right}.et_pb_blog_extras_0_tb_body .et_pb_post.et_pb_post_extra .entry-title,.et_pb_blog_extras_0_tb_body .et_pb_post.et_pb_post_extra .entry-title a{font-family:'Arial',Helvetica,Arial,Lucida,sans-serif!important;color:#358c8d!important;line-height:1.7em!important;text-shadow:0.01em 0.04em 0.05em rgba(0,0,0,0.4)!important}body #page-container .et_pb_section .et_pb_blog_extras_0_tb_body .el-dbe-blog-extra .el-pagination-button{color:#000000!important;font-size:22px;background-color:#FFFFFF}body #page-container .et_pb_section .et_pb_blog_extras_0_tb_body .el-dbe-blog-extra .el-pagination-button:hover{padding-right:2em;padding-left:0.7em}body #page-container .et_pb_section .et_pb_blog_extras_0_tb_body .el-dbe-blog-extra .el-pagination-button:hover:after{margin-left:.3em;left:auto;margin-left:.3em;opacity:1}body #page-container .et_pb_section .et_pb_blog_extras_0_tb_body .el-dbe-blog-extra .el-pagination-button:after{line-height:inherit;font-size:inherit!important;opacity:0;margin-left:-1em;left:auto;display:inline-block;font-family:ETmodules!important;font-weight:400!important}.et_pb_blog_extras_0_tb_body .et_pb_post.et_pb_post_extra .post-categories a,.et_pb_blog_extras_0_tb_body .et_pb_post_extra.et_pb_no_thumb .post-categories a{color:#FFFFFF!important;background-color:#1c9ca5;border-color:#1c9ca5}.et_pb_blog_extras_0_tb_body .el-loader{color:#0C71C3!important}.et_pb_blog_extras_0_tb_body .el-dbe-blog-extra .el-pagination-button:after{content:attr(data-icon)}.et_pb_blog_extras_0_tb_body .el-dbe-post-categories li a{padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px}.et_pb_blog_extras_0_tb_body .el-dbe-post-categories li{margin-right:15px;margin-bottom:15px}.et_pb_blog_extras_0_tb_body .swiper-button-next::after,.et_pb_blog_extras_0_tb_body .swiper-button-prev::after{padding-top:5px!important;padding-right:10px!important;padding-bottom:5px!important;padding-left:10px!important}.et_pb_row_4_tb_body,.et_pb_menu_0_tb_body.et_pb_menu{background-color:RGBA(255,255,255,0)}.et_pb_row_4_tb_body.et_pb_row{padding-top:15px!important;padding-left:10px!important;padding-top:15px;padding-left:10px}.et_pb_menu_0_tb_body.et_pb_menu ul li a{font-family:'Adamina',Georgia,"Times New Roman",serif;font-weight:600;font-size:16px;color:#FFFFFF!important;letter-spacing:1px;line-height:1.5em}.et_pb_menu_0_tb_body.et_pb_menu ul li.current-menu-item a{color:#FFFFFF!important}.et_pb_menu_0_tb_body.et_pb_menu .nav li ul,.et_pb_menu_0_tb_body.et_pb_menu .et_mobile_menu,.et_pb_menu_0_tb_body.et_pb_menu .et_mobile_menu ul{background-color:RGBA(255,255,255,0)!important}.et_pb_menu_0_tb_body .et_pb_menu_inner_container>.et_pb_menu__logo-wrap,.et_pb_menu_0_tb_body .et_pb_menu__logo-slot{width:auto;max-width:100%}.et_pb_menu_0_tb_body .mobile_nav .mobile_menu_bar:before,.et_pb_menu_0_tb_body .et_pb_menu__icon.et_pb_menu__search-button,.et_pb_menu_0_tb_body .et_pb_menu__icon.et_pb_menu__close-search-button,.et_pb_menu_0_tb_body .et_pb_menu__icon.et_pb_menu__cart-button{color:#006666}.et_pb_column_2_tb_body{background-color:#FFFFFF;border-radius:5px 5px 5px 5px;overflow:hidden;border-width:1px;border-color:#FFFFFF;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px}@media only screen and (max-width:980px){div.et_pb_section.et_pb_section_0_tb_body{background-image:initial!important}.et_pb_section_0_tb_body{border-right-color:#60a5fa}.et_pb_section_0_tb_body.et_pb_section{background-color:#000000!important}.et_pb_post_title_0_tb_body .et_pb_title_featured_container{text-align:none}.et_pb_post_title_1_tb_body.et_pb_featured_bg,.et_pb_post_title_1_tb_body{border-bottom-width:1px;border-bottom-color:#035875}body #page-container .et_pb_section .et_pb_blog_extras_0_tb_body .el-dbe-blog-extra .el-pagination-button:after{line-height:inherit;font-size:inherit!important;margin-left:-1em;left:auto;display:inline-block;opacity:0;content:attr(data-icon);font-family:ETmodules!important;font-weight:400!important}body #page-container .et_pb_section .et_pb_blog_extras_0_tb_body .el-dbe-blog-extra .el-pagination-button:before{display:none}body #page-container .et_pb_section .et_pb_blog_extras_0_tb_body .el-dbe-blog-extra .el-pagination-button:hover:after{margin-left:.3em;left:auto;margin-left:.3em;opacity:1}.et_pb_column_2_tb_body{padding-top:60px;padding-right:30px;padding-bottom:60px;padding-left:30px}}@media only screen and (max-width:767px){div.et_pb_section.et_pb_section_0_tb_body{background-image:initial!important}.et_pb_section_0_tb_body{border-right-color:#60a5fa}.et_pb_section_0_tb_body.et_pb_section{background-color:#000000!important}.et_pb_post_title_0_tb_body .et_pb_title_featured_container{text-align:none}.et_pb_post_title_1_tb_body.et_pb_featured_bg,.et_pb_post_title_1_tb_body{border-bottom-width:1px;border-bottom-color:#035875}.et_pb_row_2_tb_body,body #page-container .et-db #et-boc .et-l .et_pb_row_2_tb_body.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_2_tb_body.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_2_tb_body.et_pb_row{width:100%}.et_pb_post_content_0_tb_body h2{font-size:18px}body #page-container .et_pb_section .et_pb_blog_extras_0_tb_body .el-dbe-blog-extra .el-pagination-button:after{line-height:inherit;font-size:inherit!important;margin-left:-1em;left:auto;display:inline-block;opacity:0;content:attr(data-icon);font-family:ETmodules!important;font-weight:400!important}body #page-container .et_pb_section .et_pb_blog_extras_0_tb_body .el-dbe-blog-extra .el-pagination-button:before{display:none}body #page-container .et_pb_section .et_pb_blog_extras_0_tb_body .el-dbe-blog-extra .el-pagination-button:hover:after{margin-left:.3em;left:auto;margin-left:.3em;opacity:1}.et_pb_column_2_tb_body{padding-right:20px;padding-left:20px}}.et_pb_section_0_tb_footer{border-color:#facc15 #a7d642 #FFFFFF #a7d642;border-right-style:groove;border-bottom-style:dashed;border-left-style:groove;border-bottom-width:30px}.et_pb_section_0_tb_footer.et_pb_section{padding-top:5rem;padding-bottom:5rem;margin-top:0px;margin-bottom:0px;background-color:#1f2937!important}.et_pb_section_0_tb_footer.section_has_divider.et_pb_bottom_divider .et_pb_bottom_inside_divider{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiMxZjI5MzciPjxwYXRoIGQ9Ik0wIDB2MTQwaDEyODBMMCAweiIgZmlsbC1vcGFjaXR5PSIuNSIvPjxwYXRoIGQ9Ik0wIDQydjk4aDEyODBMMCA0MnoiLz48L2c+PC9zdmc+);background-size:100% 100px;bottom:0;height:100px;z-index:1;transform:scale(1,1)}.et_pb_section_0_tb_footer.section_has_divider.et_pb_top_divider .et_pb_top_inside_divider{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmOWY1ZjMiPjxwYXRoIGQ9Ik0xMjgwIDE0MFYwSDBsMTI4MCAxNDB6Ii8+PC9nPjwvc3ZnPg==);background-size:100% 100px;top:0;height:100px;z-index:1;transform:scale(1,1)}.et_pb_row_0_tb_footer,body #page-container .et-db #et-boc .et-l .et_pb_row_0_tb_footer.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_0_tb_footer.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_0_tb_footer.et_pb_row,.et_pb_row_2_tb_footer,body #page-container .et-db #et-boc .et-l .et_pb_row_2_tb_footer.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_2_tb_footer.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_2_tb_footer.et_pb_row{width:100%;max-width:100%}.et_pb_text_0_tb_footer.et_pb_text{color:#FFFFFF!important}.et_pb_text_0_tb_footer{background-color:#000000;padding-top:10px!important;padding-bottom:10px!important}.et_pb_login_0_tb_footer.et_pb_login{background-color:#1f2937}.et_pb_login_0_tb_footer{box-shadow:0px 12px 18px -6px rgba(0,0,0,0.3)}.et_pb_blurb_0_tb_footer.et_pb_blurb .et_pb_module_header,.et_pb_blurb_0_tb_footer.et_pb_blurb .et_pb_module_header a{font-family:'Montserrat',Helvetica,Arial,Lucida,sans-serif;font-weight:700;font-size:18px;color:#FFFFFF!important}.et_pb_blurb_0_tb_footer.et_pb_blurb p{line-height:1.8em}.et_pb_blurb_0_tb_footer.et_pb_blurb{font-family:'Montserrat',Helvetica,Arial,Lucida,sans-serif;font-size:13px;color:#FFFFFF!important;line-height:1.8em;background-color:RGBA(0,0,0,0);border-style:dotted;border-color:#FFFFFF;padding-top:15px!important;padding-bottom:15px!important}.et_pb_blurb_0_tb_footer .et-pb-icon{font-size:31px;color:#a7d642;font-family:ETmodules!important;font-weight:400!important}.et_pb_social_media_follow_network_0_tb_footer a,.et_pb_social_media_follow_network_1_tb_footer a,.et_pb_social_media_follow_network_2_tb_footer a,.et_pb_social_media_follow_network_3_tb_footer a,.et_pb_social_media_follow_network_4_tb_footer a{box-shadow:0px 12px 18px -6px rgba(0,0,0,0.3)!important}.et_pb_social_media_follow .et_pb_social_media_follow_network_0_tb_footer .icon:before,.et_pb_social_media_follow .et_pb_social_media_follow_network_1_tb_footer .icon:before,.et_pb_social_media_follow .et_pb_social_media_follow_network_2_tb_footer .icon:before,.et_pb_social_media_follow .et_pb_social_media_follow_network_3_tb_footer .icon:before,.et_pb_social_media_follow .et_pb_social_media_follow_network_4_tb_footer .icon:before{font-size:20px;line-height:40px;height:40px;width:40px}.et_pb_social_media_follow .et_pb_social_media_follow_network_0_tb_footer .icon,.et_pb_social_media_follow .et_pb_social_media_follow_network_1_tb_footer .icon,.et_pb_social_media_follow .et_pb_social_media_follow_network_2_tb_footer .icon,.et_pb_social_media_follow .et_pb_social_media_follow_network_3_tb_footer .icon,.et_pb_social_media_follow .et_pb_social_media_follow_network_4_tb_footer .icon{height:40px;width:40px}ul.et_pb_social_media_follow_0_tb_footer a.icon{border-radius:34px 34px 34px 34px}.et_pb_social_media_follow_network_0_tb_footer a.icon,.et_pb_social_media_follow_network_1_tb_footer a.icon,.et_pb_social_media_follow_network_2_tb_footer a.icon,.et_pb_social_media_follow_network_3_tb_footer a.icon,.et_pb_social_media_follow_network_4_tb_footer a.icon{background-color:rgba(167,214,66,0.35)!important}.et_pb_row_0_tb_footer.et_pb_row,.et_pb_row_2_tb_footer.et_pb_row{padding-top:0px!important;padding-bottom:0px!important;margin-top:0px!important;margin-bottom:0px!important;margin-left:auto!important;margin-right:auto!important;padding-top:0px;padding-bottom:0px}@media only screen and (min-width:981px){.et_pb_row_1_tb_footer,body #page-container .et-db #et-boc .et-l .et_pb_row_1_tb_footer.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_1_tb_footer.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_1_tb_footer.et_pb_row{width:89%;max-width:89%}}@media only screen and (max-width:980px){.et_pb_section_0_tb_footer{border-color:#facc15 #a7d642 #FFFFFF #a7d642;border-right-style:groove;border-bottom-style:dashed;border-left-style:groove;border-bottom-width:30px}.et_pb_row_1_tb_footer,body #page-container .et-db #et-boc .et-l .et_pb_row_1_tb_footer.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_1_tb_footer.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_1_tb_footer.et_pb_row{width:80%;max-width:80%}.et_pb_blurb_0_tb_footer.et_pb_blurb{font-size:15px;border-top-style:dotted}}@media only screen and (max-width:767px){.et_pb_section_0_tb_footer{border-color:#facc15 #a7d642 #FFFFFF #a7d642;border-right-style:groove;border-bottom-style:dashed;border-left-style:groove;border-bottom-width:30px}.et_pb_blurb_0_tb_footer.et_pb_blurb .et_pb_module_header,.et_pb_blurb_0_tb_footer.et_pb_blurb .et_pb_module_header a{font-size:20px}.et_pb_blurb_0_tb_footer.et_pb_blurb{font-size:14px;border-top-style:dotted}}