/*
 ************************************************************
 * MODULE
 ************************************************************
 * ----------------------------------------------------------
 * GLOBAL
 * ----------------------------------------------------------
 */

#top .module,
#top .module__items,
#top .module__item,
#top .module .item,
#top .module .item__col,
#top .module .item__inner,
#top .module-wrapper,
#top .module-wrapper__tabs,
#top .module-wrapper__modules
{
	display: flex;
	flex-direction: column;
}

#top .module,
#top .module__items,
#top .module-wrapper,
#top .module-wrapper__modules
{
	grid-gap: 40px;
}

#top .module .item,
#top .module .item__col
{
	grid-gap: 16px;
}

#top .module__label .label > *
{
	margin: 0;
}

#top .module__label .label h2
{
	font-size: 28px;
	text-transform: uppercase !important;
	margin-bottom: 0;
}

#top .module__description
{
	padding: 32px;
	overflow: hidden;
	border-radius: 20px;
	background-color: var(--color-cvi-2);
}

/* ITEM */

#top .module .item__col--content
{
	flex-grow: 1;
}

#top .module .item__col--picture
{
	position: relative;
}

/*
 * ----------------------------------------------------------
 * ACTIONS
 * ----------------------------------------------------------
 */

#top .module__actions .loadmore
{
	margin-top: 40px;
	text-align: center;
}

#top .module__actions .loadmore a
{
	cursor: pointer;
}

/*
 * ----------------------------------------------------------
 * LIST
 * ----------------------------------------------------------
 */

#top .module--list,
#top .module--list .module__items
{
	flex-grow: 1;
}

/*
 * ----------------------------------------------------------
 * GRID
 * ----------------------------------------------------------
 */

#top .module--grid .thumb
{
	overflow: hidden;
}

#top .module--grid .item
{
	flex-grow: 1;
}

/* COLS */

#top .module--grid .cols-1
{
	grid-template-columns: repeat(1, minmax(0, 1fr));
	grid-gap: 0;
}
#top .module--grid .cols-2
{
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-gap: 48px;
}
#top .module--grid .cols-3
{
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-gap: 40px;
}
#top .module--grid .cols-4
{
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-gap: 32px;
}
#top .module--grid .cols-5
{
	grid-template-columns: repeat(5, minmax(0, 1fr));
	grid-gap: 24px;
}

@media only screen and (max-width: 1279px)
{
	.responsive #top .module--grid .cols-3,
	.responsive #top .module--grid .cols-4,
	.responsive #top .module--grid .cols-5
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 767px)
{
	.responsive #top .module--grid .module__items
	{
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

/* ITEMS */

#top .module--grid .module__items
{
	display: grid;
	width: 100%;
}

/*
 * ----------------------------------------------------------
 * TESTIMONIALS
 * ----------------------------------------------------------
 */

#top .module--testimonials .title h3
{
	font-size: 21px;
	margin-bottom: 0;
}

#top .module--testimonials .colorbox
{
	background-color: var(--color-white);
}