img {
	max-width: 100%;
}


/*---- Links --------*/

.Link,
.Page-Content ul li a {
	color: inherit;
	text-decoration: none
}

.Link:active,
.Link:focus {
	outline: 0
}

.Page-Content p a, form a {
	color: var(--accent1);
	outline: 0 none;
	text-decoration: none;
}

.Page-Content p a:hover {
	color: var(--accent4);
	text-decoration: underline;
}

.Page-Content p a:focus {
	outline: none;
	outline-offset: -4px;
}

.Page-Content p a:visited {
	color: var(--accent2);
}

.Page-Content p a.not-visited:visited {
	color: var(--color4);
}



/*--------- Breadcrumbs --------*/
.Breadcrumbs-Devider {}

.Icon_type_BreadcrumbArrow {
	fill: var(--color5);
	width: 10px;
	height: 14px;
	padding: 0 4px 0 4px;
	vertical-align: middle;
}

.Breadcrumb-Link {
	color: var(--color6) !important;
}


/*--------- Bulleted list --------*/
.Page-Content ul,
.Page-Content ol {
	padding: 18px 0 14px 0;
	font-weight: 300;
	font-size: large;
	margin: 0;
}

.Page-Content ul li,
.Page-Content ol li {
	list-style-type: none;
	margin-bottom: 18px;
}

.Page-Content ul li {
	background-position-x: left;
    background-position-y: 8px;
    background-size: 12px 14px;
	vertical-align: middle;
	padding: 2px 0 0 22px;
	line-height: 1.4;
}


/*--------- Numbered list --------*/
.Page-Content ol {
	list-style-type: none;
	counter-reset: num;
	line-height: 1.5;
}

.Page-Content ol li {
	padding: 0 0 0 24px;
}

.Page-Content ol li::before {
	content: counter(num) '. ';
	counter-increment: num;
	color: var(--color6);
	font-weight: 600;
	position: absolute;
	margin-left: -24px;
}

.Page-Content strong {
	font-weight: 500;
}






/*----------- DESCTOP ---------------------------------------------------*/
@media screen and (min-width:769px) {

	.Page-Container {
		margin: 0 auto;
		width: var(--contentWidth);
		padding: 0 16px;
		box-sizing: border-box;
		color: var(--textLight);
	}

    .Page-Padding-bottom {
        padding-bottom: 24px;
    }

	/*--------- img --------*/
	/* .Page-Content figure {
        padding: 40px 32px 0 0;
        margin: 0;
        border-radius: 4px;
	}

	.Page-Content figure>img {
		width: auto !important;
		height: auto !important;
        border-radius: 4px;
		cursor: pointer;
		cursor: -webkit-zoom-in;
		cursor: -moz-zoom-in;
	} */

	.Page-Title {
		padding-top: 54px;
	}

	.Breadcrumbs {
		padding-bottom: 24px;
	}

	.Page-Content h1,
	.Page-Content h2,
	.Page-Content h3,
	.Page-Content h4,
    .Page-Content h5 {
		line-height: 1.4;
		color: var(--color7);
        font-weight: 400;
	}

	.Page-Content h1 a,
	.Page-Content h2 a,
	.Page-Content h3 a,
	.Page-Content h4 a,
    .Page-Content h5 a  {
		text-decoration: none;
		color: var(--color7);
	}

	.Page-Content h1 {
		font-size: xx-large;
		margin: 0 0 8px 0;
	}

	.Page-Content h2,
	.Page-Content h3 {
		font-size: x-large;
		margin: 44px 0 24px 0;
	}

	.post.search-match h3 {
		margin: 24px 0 14px 0 !important;
	}

	.Page-Content h4, .Page-Content h5 {
		font-size: large;
	}

	.Page-Content p {
		font-size: large;
		margin-bottom: 18px;
		line-height: 1.4;
		font-weight: 300;
		color: var(--textLight);
		/* text-align: justify; */
	}



}


/*----------- MOBILE ----------------------------------------------------*/
@media screen and (max-width:768px) {

	.Page-Container {
        padding: 0 24px;
        box-sizing: border-box;
        color: var(--textLight);
    }

    .Page-Padding-bottom {
        padding-bottom: 80px;
    }

    /*--------- img --------*/
    /* .Page-Content figure {
        float: none;
        padding: 42px 0 0 0;
        margin: 0;
    }

    .Page-Content figure>img {
        width: auto !important;
        height: auto !important;
    } */

	.Page-Title {
		padding: 24px 0 8px 0;
	}

	.Breadcrumbs {
		padding: 0 0 8px 0;
		font-weight: 300;
		font-size: medium;
		line-height: 1.6;
	}

	.Breadcrumb-Link {
		color: var(--accent7);
	}

	.Page-Content {
		padding-bottom: 0px;
	}

	.Page-Content h1 {
		font-size: x-large;
		color: var(--color6);
		margin-bottom: 24px;
	}

	.Page-Content h2 {
		font-size: x-large;
		margin: 48px 0 16px 0;
	}

	.Page-Content h3 {
		font-size: larger;
		margin-bottom: 24px;
	}

	.Page-Content h4 {
		font-size: large;
		margin-bottom: 24px;
	}


	.Page-Content h1 a,
	.Page-Content h2 a,
	.Page-Content h3 a {
		text-decoration: none;
		color: var(--color7);
	}

	.Page-Content h1,
	.Page-Content h2,
	.Page-Content h3,
	.Page-Content h4 {
		line-height: 1.3;
		color: var(--color7);
		font-weight: 400;
	}

	.Page-Content p {
        font-size: large;
        font-weight: 300;
        margin-bottom: -4px;
        text-align: left;
        line-height: 1.6;
		color: var(--textLight);
	}







}