/*
Bienvenue dans l’éditeur CSS de l’extension Design !

CSS (Cascading Style Sheets) est un langage qui fournit des informations à
votre navigateur concernant le style de la page web que vous visitez. Vous
pouvez maintenant supprimer ces commentaires et commencer à ajouter votre
propre code CSS.

Par défaut, cette feuille de style sera chargée après la feuille de
style de votre thème, ce qui veut dire que les nouvelles règles que vous
ajouterez ici pourront remplacer celles créées par le thème.

Vous pouvez donc ajouter ici les changements que vous souhaitez apporter à
votre thème, sans avoir à copier la feuille de style existante de
celui-ci, ou avoir à recréer toutes les règles de style de votre thème.
*/
/*===========ON PASSE LES TITRES DANS LE BLEU VOULU===========*/
h1, h2, h3, h4, h5, h6 {
	color: #0d54f4;
}

/*===========ON ENLEVE TOUT LE GRAS===========*/
.thb-text h1, .thb-text h2, .thb-text h3, .thb-text h4, .thb-text h5, .thb-text h6, .comment_body h1, .comment_body h2, .comment_body h3, .comment_body h4, .comment_body h5, .comment_body h6, #page-header .page-title,  #single-work-container .work-details .work-title {
	font-weight: normal;
}

/*===========ON MODIFIE LES COULEURS DES TEXTES, EN CAPITALE, DU DIAPORAMA/HEADER===========*/
div.thb-heading h1 {
	color: #0d54f4;
	font-weight: none;
	font-size: 44px !important;
	font-family: Muli;
	text-transform: uppercase;
/*Affichage ou non de la ligne au dessous du titre:*/
	border-style: none !important;
	border-bottom-color: #445df5 !important;
	border-width: 0 0 6px;
	border-width: 0;
}

/*===========ON DECALE LES TITRES DU DIAPORAMA/HEADER VERS LE BAS===========*/
div.thb-caption {
	color: #00cccc;
	font-size: 30px !important;
	font-family: Muli;
	text-transform: uppercase;
}

div.thb-heading {
	margin-top: 430px !important;
}

div.thb-heading + .thb-caption {
	margin-top: 0 !important;
}

/*===========ON MODIFIE LA COULEUR DES LIENS DU PIED DE PAGE AFIN QU'ILS SOIENT VISIBLES===========*/
#copyright a:link, #copyright a:visited {
	color: #666;
}

#copyright a:hover, #copyright a:active {
	color: #00cccc;
}

/*===========ON DECALE LE PIED DE PAGE VERS LE HAUT===========*/
.footer-wrapper {
	padding: 0 0 10px !important;
}

.inner-wrapper {
	padding: 0 !important;
}

/*===========ON CHANGE LA COULEUR DU MENU RESPONSIVE POUR MOBILE POUR EVITER MENU BLANC SUR FOND BLANC===========*/
#mobile-menu-container {
	background-color: #00cccc;
}

/*===========ON MET DE LA TRANSPARENCE SUR LES CARRES DES APERCUS DU PORTFOLIO DANS LES OEUVRES - ANNULE A LA DEMANDE DU CLIENT===========*/
/*
.work-thumb .thb-work-overlay {
	background-color: transparent;
}
*/
/*===========ON CENTRE LES TITRES DES APERCUS DU PORTFOLIO DANS LES OEUVRES ET ON N'AFFICHE PAS LES CATEGORIES AU DESSOUS DE CHACUNE DES OEUVRES===========*/
.work-data h3 {
	text-align: center;
	text-transform: uppercase;
}

.work-data p {
	display: none;
}

/*ON SUPPRIME LE FOOTER*/
#footer-sidebar {
  display: none;
}