/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* VERT var( --e-global-color-primary ) */
/* ORANGE var( --e-global-color-accent ) */
/* NOIR var( --e-global-color-secondary ) */

/* FOOTER */
body > div.elementor {
    min-height: calc(100vh - 108px);
}
/* ELEMENTOR */
body .elementor-widget-text-editor a{
	font-weight: bold;
	text-decoration: underline;
	color: #000;
}
body .elementor-widget-text-editor a:hover{
	color: var( --e-global-color-accent );
}

/* HOME */
.uitco-tag-cloud{
	display: flex;
    justify-content: center;
    gap: 3px 15px;
    flex-wrap: wrap;
    align-items: center;
}

.uitco-tag-cloud .uitco-tag{
    color: white;
	text-transform: uppercase;
	display: block;
	font-size: 18px;
	font-weight: bold;
}
.uitco-tag-cloud .uitco-tag:hover{
	color: var( --e-global-color-accent );
}

.onePostCard time{
	color: var( --e-global-color-accent );
	font-weight: bold;
	font-size: 16px;
    line-height: 1;
}
.onePostCard .elementor-widget-heading  h2{
	color: black;
	font-weight: bold;
	font-size: 20px;
    line-height: 1;
	margin: 0;
	padding: 0;
}


/* PROJETS */

.uitco-cats-grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 40px;
	grid-row-gap: 40px;
}
.uitco-cats-grid img{
	border-radius: 4px;
}
.uitco-cats-grid a{
	display: block;
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 4px;
}

.uitco-cats-grid a img {
	display: block;
	width: 100%;
	height: auto;
}

.uitco-cats-grid a .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	background: linear-gradient(45deg,rgba(163, 217, 165, 0.6) 0%, rgba(229, 124, 79, 0.6) 100%);
	
	transition: background 0.3s;
}

.uitco-cats-grid a:hover .overlay {
	background: rgba(229, 124, 79, 0.8);
}

.uitco-cats-grid a h3, 
.uitco-cats-grid a p {
	margin: 0;
}

/* BREADCRUMBS */
#breadcrumbs a{
	color: black;
	text-decoration: underline;
}
.whiteBreadCrumbs #breadcrumbs a,.whiteBreadCrumbs #breadcrumbs{
	color: white;
}


/* TABLETTE */
@media (max-width: 1024px) {
}


/* SMARTHPONE */
@media (max-width: 767px) {
	.uitco-tag-cloud .uitco-tag{
		font-size: 14px;
	}
	
	.uitco-cats-grid{
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
}







