:root {
	--white: #fff;
	--lightGray: #f8f8f8;
	--mediumGray: #ccc;
	--darkGray: #2d2d2f;
	--black: rgb(0, 0, 0);
	--pontenBlue: #c3d8e8;
	--pontenDarkBlue: #2d3c48;
	--pontenDarkBlueGradient: linear-gradient(90deg, #2d3c48 0%, #3a4b5c 100%);
	--pontenBlueGradient: linear-gradient(90deg, rgb(74, 99, 119) 0%, rgb(92, 107, 122) 100%);
	--lightBlue: #d6e8f5;
	--pontenGoldGradient: linear-gradient(to right, #8c6a13, #bfa43a, #7a5a10, #bfa43a, #6a4f0d);
	--pontenGold: rgb(221, 187, 48);
}

body {
	font-family: "Poppins", sans-serif;
}

.pagebuilder p {
	padding-top: 20px;
}
/* Sections */
section.section-parallax,
section.section-parallax-layer {
	min-height: 700px;
	width: 100%;
	background-attachment: fixed !important;
	display: flex;
	align-items: center;
}

section.section-parallax-layer {
	position: relative;
}

section.section-parallax-layer::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

section.section-parallax-layer .box {
	z-index: 1;
}

section:first-of-type.section-parallax,
section:first-of-type.section-parallax-layer {
	height: auto;
	min-height: 100vh;
}

section.section-parallax > div,
section.section-parallax-layer > div {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 25px;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

section.standard {
	width: 100%;
}

section.section-gradient {
	width: 100%;
	background: var(--pontenGoldGradient);
}

section.section-gradient2 {
	width: 100%;
	background: var(--pontenDarkBlueGradient);
}

section.standard > div,
section.section-gradient > div,
section.section-gradient2 > div {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	padding: 110px 1rem 0 1rem;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

section.full {
	width: 100%;
	margin: 0 auto;
}

section.full > div {
	width: 100%;
	display: flex;
	justify-content: space-around;
	justify-content: center;
	flex-wrap: wrap;
}

section.section-text {
	display: block;
	width: 100%;
	margin: 25px auto;
	padding: 0;
}

section.section-text > div {
	display: block;
	/* max-width: 1200px; */
	max-width: 1400px;
	padding: 25px 50px;
}

section.section-text > div .section-text-wrapper {
	display: block;
	width: calc(100% - 40px);
	margin: 20px;
	padding: 0;
}

section.full > div {
	margin: 0 auto;
}

section.full > div .section-text-wrapper {
	/* max-width: 1200px; */
	max-width: 1400px;
	padding: 25px 50px;
}

section.section-slider {
	position: relative;
	width: 100%;
	height: 0;
	overflow: hidden;
	transition: all 0.4s ease;
}

.pagebuilder section.section-slider {
	height: auto !important;
}

section.slider-loaded {
	height: auto;
}

section.section-slider > div {
	width: 100%;
}

/* End of sections */

/* ############################################################### */
/* ############################################################### */
/* ############################################################### */
/* ############################################################### */

/* General */
.item-action {
	margin-top: 20px;
}

#info,
.info {
	max-width: 1100px;
	width: 100%;
	margin: 50px auto;
	padding: 25px 50px;
}

#info ul,
.info ul,
.content ul,
.box-content ul,
.single-news ul,
.section-text ul,
#info ol,
.info ol,
.content ol,
.box-content ol,
.single-news ol,
.section-text ol {
	padding: 5px 20px;
}

/* End of general */

/* ############################################################### */
/* ############################################################### */
/* ############################################################### */
/* ############################################################### */

/* Buttons */
.btn-white {
	background-color: var(--white);
	border: 3px solid var(--white);
	color: var(--black);
}

.btn-black {
	background-color: var(--black);
	border: 3px solid var(--black);
	color: var(--white);
}

.btn-blue {
	background-color: var(--pontenBlue);
	border: 3px solid var(--pontenBlue);
	color: var(--black);
}

.btn-dark-blue {
	background-color: var(--pontenDarkBlue);
	border: 1px solid var(--pontenDarkBlue);
	color: var(--white);
}

.btn-gold {
	background: var(--pontenGold);
	border: 3px solid var(--pontenGold);
	color: var(--white);
}

.btn-trans {
	background-color: transparent;
	color: var(--pontenBlue) !important;
	border: 3px solid var(--pontenBlue);
}

.btn-trans-white {
	background-color: transparent;
	color: var(--white) !important;
	border: 3px solid var(--white);
}

.btn-white,
.btn-black,
.btn-blue,
.btn-dark-blue,
.btn-gold,
.btn-trans,
.btn-trans-white {
	padding: 2rem 3rem;
	border-radius: 4px;
	width: fit-content;
	display: inline-flex;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	position: relative;
	line-height: 100%;
	align-items: center;
}

.btn-white span,
.btn-black span,
.btn-blue span,
.btn-dark-blue span,
.btn-gold span,
.btn-trans span,
.btn-trans-white span {
	font-size: 16px;
}

.btn-white:hover {
	border: 3px solid var(--pontenGold);
	background-color: var(--pontenGold);
	color: var(--white) !important;
}

.btn-black:hover {
	border: 3px solid var(--white);
	background-color: var(--white);
	color: var(--black) !important;
}

.btn-blue:hover {
	border: 3px solid var(--pontenDarkBlue);
	background-color: var(--pontenDarkBlue);
	color: var(--white) !important;
}

.btn-dark-blue:hover {
	border: 1px solid var(--pontenGold);
	/* background-color: var(--pontenBlue); */
	/* color: var(--black) !important; */
}

.btn-gold:hover {
	border: 3px solid var(--white);
	background-color: var(--white);
	color: var(--black) !important;
}

.btn-trans:hover {
	border: 3px solid var(--pontenBlue);
	background-color: transparent;
	color: var(--pontenBlue) !important;
}

.btn-trans-white:hover {
	border: 3px solid var(--white);
	background-color: white !important;
	color: var(--pontenBlue) !important;
}

/* End of butons */

/* ############################################################### */
/* ############################################################### */
/* ############################################################### */
/* ############################################################### */

/* Boxes */
/* Box spacer */
.box-spacer {
	height: 50px;
	width: 100%;
	background-color: transparent !important;
	background: transparent !important;
	background-image: none !important;
}

.box-spacer .box-image-container,
.box-spacer .box-content {
	display: none;
	background-color: transparent !important;
	background: transparent !important;
	background-image: none !important;
}

.pagebuilder .box-spacer .box-content {
	display: block;
	background-color: transparent !important;
	background: transparent !important;
	background-image: none !important;
}

/* End of box spacer */

/* Box 100-text */
.box-100-text,
.box-100-text-gradient {
	width: calc(100% - 30px);
	margin: 15px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.box-100-text-gradient {
	background: var(--pontenBlueGradient);
}

.box-100-text .box-content,
.box-100-text-gradient .box-content {
	padding: 30px;
	width: 100%;
	max-width: 700px;
}

section.full .box-100-text .box-content {
	margin: 0 auto;
	padding: 0 30px;
}
/* End of box 100-text */

/* BOX 100 img left/right */
.box-100-img-right {
	flex-flow: row-reverse;
}

.box-100-img-right,
.box-100-img-left {
	width: 100%;
	display: flex;
	justify-content: center;
}

section.standard .box-100-img-right,
section.standard .box-100-img-left {
	width: calc(100% - 30px);
	margin: 15px;
}

.box-100-img-right .box-content,
.box-100-img-left .box-content {
	margin: auto;
	width: 50%;
	padding: 100px 30px;
	max-width: 650px;
}

.box-100-img-right .box-image-container,
.box-100-img-left .box-image-container {
	width: 50%;
	position: relative;
	display: flex;
	padding-top: 35%;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
/* End of BOX 100 img left/right */

/* Box 100 transparent */
.box-100-transparent {
	width: 100%;
	width: calc(100% - 30px);
	margin: 15px;
	width: 100%;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	background-color: transparent !important;
}

.box-100-transparent .box-content {
	width: 100%;
	max-width: 94rem;
	padding: 10rem 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.box-100-transparent .box-content h2 {
	font-size: 40px;
}

.box-100-transparent .box-content > div p,
.box-100-transparent .box-content > div:not(.item-action) span {
	font-size: 22px;
}

.box-100-transparent .item-action {
	display: flex;
}

.box-100-transparent .item-action div,
.box-100-transparent .item-action a {
	margin-right: 25px;
	font-size: 20px;
}
/* End of box 100 transparent */

/* Box 25 */
.box-25 {
	width: 25%;
	width: calc(25% - 30px);
	margin: 15px;
	border-radius: 3px;
	position: relative;
	overflow: hidden;
}
/* End of box 25 */

/* Box 33/50 */
.box-33 {
	width: 33.33%;
	width: calc(33.33% - 30px);
	margin: 15px;
	border-radius: 3px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease-in;
}

.box-33:hover {
	/* width: calc(36% - 30px); */
}

.box-33:hover + .box-33 + .box-33,
.box-33:hover + .box-33,
.box-33:has(+ .box-33:hover),
.box-33:has(+ .box-33 + .box-33:hover) {
	/* width: calc(32% - 30px); */
}

.box-50 {
	width: 50%;
	width: calc(50% - 30px);
	margin: 15px;
	border-radius: 3px;
	position: relative;
	overflow: hidden;
}

.box-25 .box-image-wrapper,
.box-33 .box-image-wrapper,
.box-50 .box-image-wrapper {
	position: relative;
	overflow: hidden;
}

.box-25:hover .box-image-container,
.box-33:hover .box-image-container,
.box-50:hover .box-image-container {
	/* transform: scale(0.9); */
}

.box-25 .box-image-container,
.box-33 .box-image-container,
.box-50 .box-image-container {
	padding-top: 100%;
	background-position: top center !important;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	filter: grayscale(1);
}

.box-25 .box-image-container:hover,
.box-33 .box-image-container:hover,
.box-50 .box-image-container:hover {
	filter: grayscale(0);
}

.box-25 .box-content,
.box-33 .box-content,
.box-50 .box-content {
	padding: 30px;
}

/* End of box 25 , 33, 50 */

/* Box 100 toggle */
.box-100-toggle {
	width: 100%;
	width: calc(100% - 30px);
	margin: 1.5rem;
	position: relative;
}

.box-100-toggle .box-image-container {
	display: none;
	background-color: transparent !important;
	background: transparent !important;
	background-image: none !important;
}

.box-100-toggle .box-content {
	width: 100%;
	padding: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.box-100-toggle .box-content > h2 {
	color: var(--white) !important;
	background-color: var(--darkGray);
	width: 100%;
	display: flex;
	padding: 2rem 5rem 2rem 2.5rem;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
	margin: 0 !important;
	font-size: 20px !important;
}

.box-100-toggle .box-content > h2::after {
	content: "\f107";
	font-family: "Line Awesome Free";
	color: var(--white);
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 900;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.box-content.active > h2::after {
	transform: translateY(-50%) rotate(180deg);
}

.box-100-toggle .box-content > div {
	padding: 0 2.5rem;
}

.box-100-toggle .box-content .item-action {
	margin-top: 0;
}

.box-100-toggle .box-content.active > div {
	padding: 2.5rem;
}

.box-100-toggle .box-content.active .item-action {
	padding-top: 0;
}

.box-100-toggle .box-content > div {
	height: 0;
	overflow: hidden;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	width: 100%;
}

.box-100-toggle .box-content > div {
	height: 0;
	overflow: hidden;
}

.box-100-toggle .box-content.active > div {
	height: auto;
}
/* End of Box 100-toggle */

/* Box dropdown text */
.box-dropdown-content {
	width: 100%;
	width: calc(100% - 30px);
	margin: 15px;
	width: 100%;
	display: flex;
	flex-flow: column;
}

.box-dropdown-content .box-content h2 {
	background-color: var(--lightGray);
}

.box-dropdown-content .box-content > div {
	visibility: hidden;
	height: 0px;
	padding: 0;
}

.pagebuilder .box-dropdown-content .box-content > div {
	padding: 30px;
	visibility: visible;
	display: block;
	height: auto;
}

/*    Box-100-dropdown-toggle   */
.box-100-dropdown-toggle {
	width: 100%;
	width: calc(100% - 30px);
	margin: 15px;
	width: 100%;
	display: flex;
	flex-flow: column;
}

.box-100-dropdown-toggle-header {
	display: flex;
	justify-content: space-between;
	padding: 0.9rem 4rem 0.9rem 4rem;
	align-items: center;
}

.box-100-dropdown-toggle-header-title {
	margin: 0;
	padding: 0;
}

.box-100-dropdown-toggle .box-100-dropdown-toggle-show-hide {
	font-size: 30px;
}

.box-100-dropdown-toggle-content {
	visibility: hidden;
	height: 0px;
	padding: 0;
}

.pagebuilder .box-100-dropdown-toggle-content {
	padding: 30px;
	visibility: visible;
	display: block;
	height: auto;
}
/*   End box-100-dropdown-toggle    */

/* Box slider images */
.box-slider-image-block {
	width: 100%;
	position: relative;
	height: auto;
}

.box-slider-image-block .box-image-container {
	padding-top: 45%;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.box-slider-image-block .box-image-container::after {
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.45);
	z-index: 20;
	position: absolute;
}

.box-slider-image-block .box-content-outer {
	z-index: 1;
	top: 0;
	right: 0;
	width: 100%;
	position: relative;
	max-width: 113rem;
	background-color: transparent;
	margin: 0 auto;
}

.box-slider-image-block .box-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 2.5rem;
	width: 100%;
	max-width: 900px;
	z-index: 1000;
}

.box-slider-image-block .box-content h1 {
	font-size: 60px;
	line-height: 60px;
}

.pagebuilder .box-slider-image-block .box-content {
	min-width: 500px;
}

.box-slider-image-block .box-content h2 {
	font-size: 40px;
}

.box-slider-image-block .box-content > div {
	margin-top: 10px;
}

.box-slider-image-block .box-content > div p,
.box-slider-image-block .box-content > div:not(.item-action) span {
	font-size: 25px;
}

.field_content .box-slider-image-block .box-content {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 101;
}

.box-100-video {
	width: 100%;
	position: relative;
	margin: 0;
	/*min-height: calc(100vh - 85px);*/
	min-height: 80rem;
	overflow: hidden;
}

.box-100-video .box-video-container {
	display: flex;
	width: 100%;
	height: 100%;
	padding: 56.25% 0 0 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-height: 100%;
}

.box-video-container iframe,
.box-video-container object,
.box-video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.box-100-video .box-video-container iframe {
	min-height: 80rem;
	min-width: 142rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.box-100-video .box-image-container {
	padding-top: 35%;
	min-height: 40vh;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.box-100-video .box-content {
	position: absolute;
	top: 0;
	height: 100%;
	left: 0;
	padding: 2.5rem;
	width: 100%;
	font-size: 2.8rem;
	line-height: 3.5rem;
	color: var(--white);
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.box-100-video .box-content > div {
	width: 100%;
	margin: 0 auto;
}

.pagebuilder .box-100-video .box-content {
	min-width: 20rem;
}

.box-100-video .box-content h2,
.box-100-video .box-content h1 {
	font-weight: normal;
	font-size: 8.5rem !important;
	line-height: 9.5rem;
	margin-bottom: 0;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* BOX 100 QUOTE */

.box-100-quote {
	width: 100%;
	margin: 1.5rem;
	display: flex;
	align-items: center;
	padding-top: 2.5rem;
	flex-direction: column;
	position: relative;
}

.box-100-quote .box-image-container {
	width: 15rem;
	height: 15rem;
	border-radius: 50%;
	padding-top: 0 !important;
	position: relative;
	z-index: 10;
}

.box-100-quote:before {
	width: 12rem;
	height: 12rem;
	border-radius: 50%;
	padding-top: 0 !important;
	background-color: var(--pontenBlue);
	opacity: 0.5;
	content: "";
	display: flex;
	position: absolute;
	left: 40%;
	left: calc(50% - 12rem);
	top: 4rem;
	z-index: 1;
}

.box-100-quote:after {
	width: 12rem;
	height: 12rem;
	border-radius: 50%;
	padding-top: 0 !important;
	background-color: var(--darkGray);
	opacity: 0.5;
	content: "";
	display: flex;
	position: absolute;
	right: 40%;
	right: calc(50% - 12rem);
	top: 4rem;
	z-index: 1;
}

.box-100-quote .box-content {
	width: 100%;
	max-width: 76.8rem;
	margin: 0 auto;
	padding: 2.5rem;
	position: relative;
	text-align: center;
}

.box-100-quote .box-content > h2 {
	margin-bottom: 1rem;
	font-weight: normal;
	font-size: 2.5rem;
	line-height: 3.2rem;
	position: relative;
}

.box-100-quote .box-content h2::before {
	content: "\201C";
	color: var(--blue);
	position: relative;
	font-weight: 900;
	font-size: 4.5rem;
	top: 1.2rem;
	padding-right: 1rem;
}

.box-100-quote .box-content h2::after {
	content: "\201D";
	color: var(--blue);
	position: relative;
	font-weight: 900;
	font-size: 4.5rem;
	bottom: -2.7rem;
	padding-left: 1rem;
	line-height: 0;
}
/* End of boxes */

/* ############################################################### */
/* ############################################################### */

/* MEDIA */
@media all and (max-width: 1250px) {
	/* ############################################################### */
	/* ############################################################### */
	/* Sections */
	section:first-of-type.section-parallax,
	section:first-of-type.section-parallax-layer {
		min-height: calc(80vh - 80px);
		height: auto;
		background-position: left !important;
	}

	/* End of sections */
	/* ############################################################### */
	/* ############################################################### */
	.box-100-transparent .box-content h2 {
		font-size: 42px;
	}

	.box-100-transparent .box-content > div p,
	.box-100-transparent .box-content > div:not(.item-action) span {
		font-size: 22px;
	}

	.box-slider-image-block .box-content h2 {
		font-size: 40px;
	}

	.box-slider-image-block .box-content > div p,
	.box-slider-image-block .box-content > div:not(.item-action) span {
		font-size: 22px;
	}
}

@media all and (max-width: 960px) {
	/* ############################################################### */
	/* ############################################################### */
	/* Sections */
	section.section-parallax,
	section.section-parallax-layer {
		min-height: 500px;
	}

	section:first-of-type.section-parallax .box-100-transparent .box-content h2,
	section:first-of-type.section-parallax-layer .box-100-transparent .box-content h2 {
		font-size: 32px;
	}

	section:first-of-type.section-parallax .box-100-transparent .box-content > div,
	section:first-of-type.section-parallax .box-100-transparent .box-content p,
	section:first-of-type.section-parallax-layer .box-100-transparent .box-content > div,
	section:first-of-type.section-parallax-layer .box-100-transparent .box-content p {
		font-size: 18px;
		line-height: 150%;
	}

	/* End of sections */
	/* ############################################################### */
	/* ############################################################### */
	.content-full {
		margin: 50px 0;
		padding: 0;
	}

	#info,
	.info {
		padding: 20px;
		margin: 50px 0;
	}

	.box-100-transparent .box-content h2 {
		font-size: 34px;
	}

	.box-100-transparent .box-content > div p,
	.box-100-transparent .box-content > div:not(.item-action) span {
		font-size: 20px;
	}

	.box-25 {
		width: 50%;
		width: calc(50% - 30px);
	}

	.box-slider-image-block .box-content {
		max-width: 75%;
		padding: 25px;
	}

	.box-slider-image-block .box-content h2 {
		font-size: 34px;
	}

	.box-slider-image-block .box-content > div p,
	.box-slider-image-block .box-content > div:not(.item-action) span {
		font-size: 20px;
	}

	.box-100-video .box-content h2,
	.box-100-video .box-content h1 {
		font-size: 6.5rem !important;
		line-height: 7rem;
	}

	.box-100-video .box-image-container {
		padding-top: 35%;
		min-height: 75vh;
	}

	.box-100-video {
		min-height: 70rem;
	}

	.box-100-video .box-video-container iframe {
		min-height: 70rem;
		min-width: 125rem;
	}
}

@media all and (max-width: 768px) {
	/* ############################################################### */
	/* ############################################################### */
	/* Sections */
	section.standard > div {
		padding: 0;
	}

	section.section-text > div .section-text-wrapper {
		width: 100%;
		width: calc(100% - 40px);
		margin: 0 20px;
	}

	section.section-text > div {
		width: 100%;
		margin: 0;
		border: none;
	}

	section.section-parallax,
	section.section-parallax-layer {
		background-attachment: unset !important;
		min-height: 400px;
	}

	section.section-parallax > div,
	section.section-parallax-layer > div {
		padding: 75px 0;
	}

	/* End of sections */
	/* ############################################################### */
	/* ############################################################### */

	/* Blocks */
	/* Box 100 text */
	.box-100-text,
	.box-100-text-gradient {
		width: 100%;
		margin: 1.5rem 0;
	}

	.box-100-text .box-content,
	.box-100-text-gradient .box-content {
		padding: 4rem 2rem;
	}

	/* End of box 100 text */
	/* Box 100 img left/right */
	.box-100-img-left {
		flex-flow: column;
	}

	.box-100-img-right {
		flex-flow: column;
	}

	.box-100-img-left .box-image-container,
	.box-100-img-right .box-image-container {
		padding-top: 65%;
		width: 100%;
	}

	.box-100-img-left,
	.box-100-img-right {
		width: 100%;
		margin: 1.5rem 0;
	}

	.box-100-img-right .box-content,
	.box-100-img-left .box-content {
		width: 100%;
		padding: 4rem 2rem;
	}

	/* End of box 100 img left/right */
	/* Box 100 transparent */
	.box-100-transparent {
		width: 100%;
		margin: 1.5rem 0;
	}

	.box-100-transparent .item-action div,
	.box-100-transparent .item-action a {
		margin-right: 25px;
		font-size: 18px;
	}

	.box-100-transparent .box-content {
		padding: 4rem 2rem;
	}

	.box-100-transparent .box-content h2 {
		font-size: 28px;
	}

	.box-100-transparent .box-content > div p,
	.box-100-transparent .box-content > div:not(.item-action) span {
		font-size: 18px;
	}

	/* End of box 100 transparent */
	/* Box */
	.box-25,
	.box-33,
	.box-50 {
		width: 100%;
		margin: 1.5rem 0;
	}

	.box-25 .box-content,
	.box-33 .box-content,
	.box-50 .box-content,
	.box-33-news .box-content {
		padding: 4rem 2rem;
	}

	/* End of box 33 */
	/* Box spacer */
	.box-spacer {
		height: 25px;
	}

	/* End of box spacer */

	.box-slider-image-block .box-image-container {
		padding-top: 55%;
	}

	.box-slider-image-block .box-content h2 {
		font-size: 28px;
	}

	.box-slider-image-block .box-content > div p,
	.box-slider-image-block .box-content > div:not(.item-action) span {
		font-size: 18px;
	}

	.box-100-video .box-content {
		font-size: 1.8rem;
		line-height: 2.7rem;
	}

	.box-100-quote {
		width: calc(100% - 3rem);
		margin: 1.5rem;
		flex-flow: wrap column;
	}
	.box-100-quote .box-image-container {
		margin: 0 auto;
	}
	.box-100-quote .box-content {
		max-width: 100%;
	}
	.box-100-quote .box-content::after {
		top: 1rem;
	}

	/* End of blocks */
	/* ############################################################### */
	/* ############################################################### */
}

@media all and (max-width: 550px) {
	/* ############################################################### */
	/* ############################################################### */
	/* Sections */
	section.section-parallax,
	section.section-parallax-layer {
		min-height: 300px;
	}

	/* End of sections */
	/* ############################################################### */
	/* ############################################################### */

	.box-100-transparent .box-content h2 {
		font-size: 24px;
	}

	.box-100-transparent .box-content > div p,
	.box-100-transparent .box-content > div:not(.item-action) span {
		font-size: 14px;
	}

	.box-25 .box-content h2,
	.box-33 .box-content h2 {
		font-size: 18px;
		padding: 0;
	}

	.box-100-toggle .box-content > h2 {
		font-size: 16px !important;
	}

	.box-slider-image-block .box-content h2 {
		font-size: 24px;
	}

	.box-slider-image-block .box-content > div p,
	.box-slider-image-block .box-content > div:not(.item-action) span {
		font-size: 14px;
	}

	.box-100-video .box-content h2,
	.box-100-video .box-content h1 {
		font-size: 4.5rem !important;
		line-height: 5rem;
	}

	.box-100-video .box-image-container {
		min-height: 40rem;
	}

	.box-100-quote .box-content h2 {
		font-size: 2rem;
	}
}
