/*<meta />*/

@import url('Web/Variables.css');

/*==General==*/

.container
{
	max-width: 1290px;
	margin: auto;
	padding: 0 30px;
}

.row
{
	max-width: none;
}

/*==Tiles==*/

.docs-home-tiles-wrapper
{
	padding: 80px 0 40px;
}

.docs-home-tiles-container > div.row,
.docs-home-more-cards > div.row
{
	display: flex;
	flex-wrap: wrap;
}

.docs-home-more-wrapper
{
	padding: 40px 0 0;
	background-color: #DFE6E8;
}

.docs-card
{
	border: 1px solid #DFE6E8;
	height: 100%;
	/*padding: var(--space-width) var(--space-width) 0;*/
	padding: 0 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 6px;
}

.docs-card:hover
{
	box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.18);
}

.docs-card > h3
{
	min-height: 4rem;
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	margin-top: 0;
}

.docs-home-tiles-wrapper a,
.docs-home-tiles-wrapper a:hover,
.docs-home-tiles-wrapper a:active,
.docs-home-tiles-wrapper a:visited
{
	color: inherit;
	text-decoration: none;
}

.docs-card-header-container
{
	padding: 30px 20px;
	border-bottom: 1px solid #DFE6E8;
	margin: 0 -30px;
	background-color: #F0F2F3;
}

.docs-card-header
{
	font-size: 20px;
	line-height: 1.4;
	font-weight: normal;
}

.docs-card-header-container:empty
{
	padding: unset;
	border: unset;
}

.docs-card-title
{
	font-size: 24px;
	line-height: 1.32;
	padding: 40px 0;
	font-weight: normal;
}

.docs-card-footer
{
	font-size: 14px;
	opacity: 0.8;
	line-height: 1.28;
	padding: 0 0 20px;
	text-align: right;
}

.docs-card-footer:empty
{
	padding: unset;
}

.has-arrow::after
{
	content: ' \279D';
}

.btn-container
{
	padding: 20px 30px;
	border-top: 1px solid #DFE6E8;
	margin: auto -30px;
	line-height: 1.28;
}

.btn-container span:not(.mc-variable)::after
{
	content: '\279D';
	line-height: 0.5;
	font-size: 36px;
	float: right;
}

.btn
{
	font-size: 14px;
}

.btn-cta-container
{
	padding: 20px 0;
}

.btn-cta,
.btn-outline
{
	display: block;
	transition: all 0.2s ease;
	width: max-content;
	padding: 0.75rem 1.75rem;
}

.btn-cta
{
	background: #72bf00;
}

.btn-cta:hover
{
	background: #002b3f;
	color: #72bf00;
}

.btn-outline
{
	border: 2px solid #72bf00;
}

.btn-outline:hover
{
	background: #72bf00;
}

.docs-home-tiles-container div.column,
.docs-home-more-container div.column
{
	margin: 0 0 40px;
}

.docs-home-more-main > span
{
	font-weight: bold;
}

/*.docs-home-more-cards p
{
	font-family: var(--font-secondary);
}*/

.docs-card-image
{
	min-height: 4rem;
	font-size: 0px;
	padding-top: 30px;
}

.docs-card-image img
{
	height: 4rem;
}

.docs-card-more-image
{
	min-height: 4rem;
	font-size: 0px;
}

.docs-card-more-image img
{
	height: 4rem;
}

@media only screen and (max-width: 1279px)
{
	
}

@media only screen and (max-width: 767px)
{
	.docs-hero-banner-container
	{
		background: none;
		min-height: 250px;
	}

	.docs-card-image
	{
		display: flex;
		justify-content: center;
	}

	.docs-card > h3
	{
		justify-content: center;
	}

	/*==Visibility classes==*/

	.hide-for-small-only,
	.show-for-medium-only,
	.show-for-large-only,
	.show-for-medium,
	.show-for-large
	{
		display: none !important;
	}
}

