:root {
	--white: #fff;
	--lightGray: #f8f8f8;
	--mediumGray: #ccc;
	--darkGray: #2d2d2f;
	--black: rgb(0, 0, 0);
	--blackGray: #333333;
	--blackGrayText: #383838;
	--grayText: #4f4f4f;
	--weboneBlue: #004679;
	--lightBlue: #d6e8f5;
	--black-gradient: linear-gradient(115deg, rgb(0 0 0 / 78%) 0%, rgb(0 0 0 / 6%) 100%);
	--red: #ce2727;
	--red-gradient: linear-gradient(115deg, rgb(125 13 13) 0%, rgb(165 0 0 / 73%) 100%);
	/* --red-gradient-full-opacity: linear-gradient(115deg, rgb(255 49 49) 0%, rgb(255 86 86) 100%); */
	--red-gradient-full-opacity3: linear-gradient(115deg, rgb(160, 11, 0) 0%, rgb(172, 1, 1) 100%);
	--orange-gradient: linear-gradient(115deg,
			rgba(241, 39, 17, 0.75) 0%,
			rgba(245, 175, 25, 0.75) 100%);
	--orange-gradient-full-opacity: linear-gradient(115deg, rgb(255 159 90) 0%, rgb(211 119 88) 100%);
	--orange-gradient-light: linear-gradient(115deg,
			rgba(241, 39, 17, 0.1) 0%,
			rgba(245, 175, 25, 0.1) 100%);
	--orange-gradient-lighter: linear-gradient(115deg,
			rgba(241, 39, 17, 0.4) 0%,
			rgb(245 175 25 / 91%) 100%);
	--orange: #ff6b35;
	--lightOrange: #ff9a73;
	--lightOrangeAccent: #ff723a;
	--neutralOrange: rgb(255 148 110);
	--coral: #ff4757;
	--lightRed: #fadcd8;
	--peach: #ffeaa7;
	--lightPeach: #fff6ef;
	--amber: #f39c12;
	--accentColor: #7c000b !important;
	--complementary: #860505;
}

body {
	font-family: "Poppins", sans-serif;
}

.pagebuilder p {
	padding-top: 20px;
}

/* Sections */
section.section-parallax,
section.section-parallax-layer {
	min-height: 220vh;
	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: 75vh;
}

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%;
	padding: 6rem 0;
}

section.standard>div {
	max-width: 1550px;
	width: 100%;
	margin: 0 auto;
	padding: 0 25px;
	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-special {
	min-height: 100vh;
}

section.full>div .section-text-wrapper {
	/* max-width: 1200px; */
	max-width: 1400px;
	padding: 25px 50px;
}

section.full-special .box-image-container-special {
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}

section.full-special .box-image-container-special .box-image-container {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-size: cover;
	background-position: top !important;
	background-repeat: no-repeat;
}

.box-image-container-special {
	position: relative;
	height: 100vh;
	width: 100%;
}

.box-image-container-special .box-image-container {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-size: cover;
	background-position: top !important;
	background-repeat: no-repeat;
}


/* Mörk, stilla, snygg overlay */
section.full-special .box-image-container-special::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 40%, rgb(35 35 35 / 55%) 0%, #2c2c2c0d 40%), var(--black-gradient);
	z-index: 10;
}

/* Tuppen (loggan) */
section.full-special .box-image-container-special::before {
	content: "";
	position: absolute;
	width: 90%;
	height: 90%;
	bottom: 0;
	left: 0;
	/* background-image: url("../images/Fiks_Logotyp_2019_Tupp_Mîrkrîd_resized.png"); */
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.4;
	z-index: 20;
}

/* Responsiv storlek */
@media all and (max-width: 960px) {
	section.full-special .box-image-container-special::before {
		width: 180px;
		height: 180px;
	}
}

@media all and (max-width: 768px) {
	section.full-special .box-image-container-special::before {
		width: 150px;
		height: 150px;
	}
}

@media all and (max-width: 550px) {
	section.full-special .box-image-container-special::before {
		width: 120px;
		height: 120px;
	}
}


.full-special .box-content h1 {
	font-weight: 600;
	font-size: 7rem;
}

.full-special .box-content h2 {
	font-size: 17px;
	text-transform: uppercase;
}

.full-special .box-content p {
	font-size: 1.8rem;
	line-height: 9rem;
	color: #e7e7e7 !important;
}

.box-image-container-special .box-content {
	position: absolute;
	bottom: 50%;
	left: 22%;
	z-index: 200;
	width: 100%;
}

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: 2px solid var(--white);
	color: var(--weboneBlue);
}

.btn-blue {
	background-color: var(--weboneBlue);
	border: 2px solid var(--weboneBlue);
	color: var(--white);
}

.btn-trans {
	background-color: transparent;
	color: var(--weboneBlue) !important;
	border: 2px solid var(--weboneBlue);
}

.btn-trans-white {
	background-color: transparent;
	color: var(--white) !important;
	border: 2px solid var(--white);
}

.btn-trans-orange {
	background-color: transparent;
	color: var(--orange);
	border: 2px solid var(--orange);
}

.btn-trans-red {
	background-color: transparent !important;
	color: var(--red) !important;
	border: 2px solid var(--red) !important;
}

.btn-red {
	background-color: var(--red) !important;
	;
	border: 2px solid var(--red) !important;
	;
	color: var(--white) !important;
}

.btn-trans-orange-variation {
	background-color: transparent;
	color: var(--orange);
	border: 2px solid var(--orange);
}

.btn-white,
.btn-blue,
.btn-trans,
.btn-trans-white,
.btn-trans-orange,
.btn-trans-orange-variation,
.btn-trans-red,
.btn-red {
	padding: 2.1rem 4.2rem;
	border-radius: 50em;
	width: fit-content;
	display: inline-flex;
	cursor: pointer;
	font-weight: 500;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	position: relative;
	line-height: 100%;
	align-items: center;
}

.btn-white span,
.btn-blue span,
.btn-trans span,
.btn-trans-white span,
.btn-trans-orange span,
.btn-trans-orange-variation span,
.btn-trans-red span,
.btn-red span {
	font-size: 16px;
}

.btn-white:hover {
	border: 2px solid var(--weboneBlue);
	background-color: var(--weboneBlue);
	color: var(--white) !important;
}

.btn-blue:hover {
	border: 2px solid var(--black);
	background-color: var(--black);
	color: var(--white) !important;
}

.btn-trans:hover {
	border: 2px solid var(--weboneBlue);
	background-color: transparent;
	color: var(--weboneBlue) !important;
}

.btn-trans-white:hover {
	border: 2px solid var(--white);
	background-color: white !important;
	color: var(--black) !important;
}

.btn-trans-orange:hover {
	border: 2px solid var(--white);
	background-color: white !important;
	color: var(--orange) !important;
}

.btn-trans-orange-variation:hover {
	border: 2px solid var(--white);
	background: var(--orange-gradient) !important;
	color: white !important;
}

.btn-trans-red:hover {
	border: 2px solid var(--white) !important;
	background-color: var(--red) !important;
	color: var(--white) !important;
}

.btn-red:hover {
	border: 2px solid var(--black) !important;
	background-color: var(--black) !important;
	color: var(--white) !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 with gradient */
.box-gradient {
	background: var(--red-gradient);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	width: 100%;
	display: flex;
	flex-direction: column;
}

.box-gradient .box-image-container {
	width: 100% !important;
	padding-bottom: 35%;
}

.box-gradient .box-content {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	padding: 150px 30px !important;
	width: 100%;
}

/* Box 100-text */
.box-100-text {
	padding: 0;
	width: calc(100% - 30px);
	max-width: 1000px;
	margin: 15px;
	display: flex;
	flex-flow: column;
	justify-content: center;
}

.box-100-text .box-content {
	padding: 2.5rem 0 0 0;
	width: 100%;
	max-width: 1000px;
}

section.full .box-100-text .box-content {
	margin: 0 auto;
	padding: 4rem 0;
}

/* 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: 40%;
	background-size: cover;
	background-position: center 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 .box-image-container,
.box-33 .box-image-container,
.box-50 .box-image-container {
	padding-top: 65%;
	background-position: center;
	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;
}

.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: 20%;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.landing-page .box-slider-image-block .box-image-container {
	min-height: 100vh;
}

.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 0;
	width: 100%;
	max-width: 1000px;
	z-index: 1000;
}

.box-slider-image-block .box-content h1 {
	font-size: 52px;
}

.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;
}

/* End of box slider images */

/* Box top banner image */
.top-banner-image-block {
	width: 100%;
	position: relative;
	height: auto;
}

.top-banner-image-block .box-image-container {
	padding-top: 20%;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.landing-page .top-banner-image-block .box-image-container {
	min-height: 100vh;
}

.top-banner-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;
}

.top-banner-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;
}

.top-banner-image-block .box-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 2.5rem 0;
	width: 100%;
	max-width: 1000px;
	z-index: 1000;
}

.top-banner-image-block .box-content h1 {
	font-size: 52px;
}

.pagebuilder .top-banner-image-block .box-content {
	min-width: 500px;
}

.top-banner-image-block .box-content h2 {
	font-size: 40px;
}

.top-banner-image-block .box-content>div {
	margin-top: 10px;
}

.top-banner-image-block .box-content>div p,
.top-banner-image-block .box-content>div:not(.item-action) span {
	font-size: 25px;
}

.field_content .top-banner-image-block .box-content {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 101;
}

/* End of box top banner image */

.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(--weboneBlue);
	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;
	}

	.box-content,
	.top-banner-image-block .box-content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 2.5rem 2rem;
	}

	.top-banner-image-block .box-content>div p,
	.top-banner-image-block .box-content>div:not(.item-action) span {
		font-size: 18px;
	}

	.top-banner-image-block .box-image-container {
		padding-top: 35%;
	}
}

@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 {
		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;
	}

	.box-image-container-special .box-content {
		flex-direction: column;
		display: flex;
		position: absolute;
		bottom: 50%;
		left: 5%;
		z-index: 68;
		width: 85%;
	}

	.box-image-container-special .box-content {
		top: 15%;
		bottom: unset;
	}

	.full-special .box-content p {
		line-height: 5rem;
	}

	.full-special .box-content h2 {
		font-size: 12px;
	}

	.full-special .box-content h3 {
		color: rgba(255, 255, 255, 0.8);
	}
}

@media all and (max-width: 768px) {

	/* ############################################################### */
	/* ############################################################### */
	/* Sections */
	section.standard>div {
		padding: 0;
	}

	section.standard>div:has(.latest-news-wrapper) {
		padding: 4rem 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 {
		width: 100%;
		margin: 1.5rem 0;
	}

	.box-100-text .box-content {
		padding: 0 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: 75%;
		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;
	}

	.box-gradient {
		width: 100%;
	}

	.box-100-img-right .box-content h2,
	.box-100-img-left .box-content h2,
	.box-gradient h2,
	.box-100-img-right .box-content p,
	.box-100-img-left .box-content p,
	.box-gradient p {
		text-align: center;
	}

	.item-action {
		display: flex;
		justify-content: center;
	}

	/* 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 */
	/* ############################################################### */
	/* ############################################################### */

	.full-special .box-content p {
		font-size: 5rem;
	}

	/* Special blocks */
	.box-gradient {
		width: 100%;
		flex-direction: column;
		/* Stack vertically on mobile */
	}

	.box-gradient .box-image-container {
		width: 100% !important;
		/* Full width on mobile */
		padding-top: 50%;
	}

	.box-gradient .box-content {
		width: 100% !important;
		/* Full width on mobile */
		max-width: 500px;
		padding: 10rem 0 !important;
		margin: 0 auto;
		/* Center the content */
	}
}

@media all and (max-width: 550px) {

	/* ############################################################### */
	/* ############################################################### */
	/* Sections */
	section.section-parallax,
	section.section-parallax-layer {
		min-height: 550px;
	}



	/* 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-text {
		padding: 0 2rem;
	}

	.box-100-toggle .box-content>h2 {
		font-size: 16px !important;
	}

	.box-slider-image-block .box-content h2 {
		font-size: 20px;
	}

	.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;
	}

	.contact-form .form-field label {
		font-size: 1.3rem;
	}

	section.full>div {
		min-height: 50vh;
	}

	.latest-news-wrapper {
		padding: 0;
	}

	section.standard {
		padding: 0;
	}
}
