: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;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
	scroll-behavior: smooth;
	word-break: break-word;
	text-size-adjust: 100%;
	line-height: 150%;
}

html {
	font-size: 62.5%;
}

body {
	background-color: var(--white);
	font-weight: 400;
}

body.loaded {
	opacity: 1;
}

body.menu-open {
	overflow: hidden;
}

a,
a:visited {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
	color: var(--blackGrayText);
}

h1 {
	font-size: 32px;
	padding-bottom: 10px;
	line-height: 125%;
}

h2 {
	font-size: 26px;
	padding-bottom: 10px;
	line-height: 125%;
}

h3 {
	font-size: 24px;
	padding-bottom: 10px;
	line-height: 125%;
}

h4 {
	font-size: 20px;
	padding-bottom: 10px;
	line-height: 125%;
}

span {
	font-size: inherit;
	line-height: 4rem;
}

.item-action span {
	line-height: inherit;
}

.section-text-wrapper h1,
.section-text-wrapper h2 {
	padding: 10px 0;
}

a {
	color: var(--red);
}

a,
p,
label,
li,
button {
	font-size: 17px;
	line-height: 2.75rem;
	list-style: none;
}

p,
li {
	color: var(--grayText);
}

span {
	font-size: inherit;
}

img {
	max-width: 100%;
	height: auto;
}

hr {
	border: none;
	height: 2px;
	background: linear-gradient(90deg,
			transparent 0%,
			var(--red-gradient-full-opacity) 50%,
			transparent 100%);
	margin: 2rem 0;
	opacity: 0.8;
	transform-origin: left center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

hr:hover {
	opacity: 1;
	transform: scaleY(1.5);
}

input:focus,
input:active,
textarea:focus,
textarea:active {
	border-bottom: 2px solid var(--lightGray) !important;
}

html,
body {
	width: 100%;
	height: auto;
	min-height: 100vh;
}

#content-wrapper {
	min-height: 100vh;
	width: 100%;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

main {
	width: 100%;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	flex-grow: 1;
	transform-style: preserve-3d;
}

main ul:not(.splide__pagination):not(.feed-item):not(.j-link-container > ul) {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding-left: 6rem;
}

main li:not(.splide__pagination li) {
	position: relative;
	color: var(--blackGrayText);
}

main li:not(.splide__pagination li):not(.feed-item):not(.j-link-container > ul > li)::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: -2.3rem;
	top: 0.6rem;
	width: 14px;
	height: 14px;
	background: var(--red-gradient-full-opacity3);
	background-size: contain;
	opacity: var(--bullet-opacity, 0.85);
	border-radius: 4px;
	box-shadow: 0 2px 6px rgba(44, 62, 80, 0.08);
	transform: scale(var(--bullet-scale, 1));
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

main li:hover::before {
	transform: scale(1.1);
	opacity: 1;
	box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

footer {
	transition: all 0.4s ease;
}

header,
main,
footer {
	flex-shrink: 0;
}

/* Header */
#header-equalizer {
	position: relative;
	top: 0;
	left: 0;
	height: 0;
	width: 100%;
	z-index: -1;
}

body.sticky-body #header-equalizer {
	height: 11rem;
}

header {
	position: unset;
	top: 0;
	left: 0;
	box-shadow: 0 7px 14px rgba(0, 0, 0, 0.05), 0 5px 5px rgba(0, 0, 0, 0.05);
	background: var(--red-gradient-full-opacity3);
	width: 100%;
	z-index: 20000;
}

.landing-page header {
	/* position: absolute; */
	/* background: transparent !important; */
	background: var(--red-gradient-full-opacity3);
}

.hide {
	display: none;
}

.shadow {
	box-shadow: 0 7px 14px rgba(171, 171, 171, 0.2), 0 5px 5px rgba(171, 171, 171, 0.2);
}

.app-menu {
	display: none;
	background-color: transparent;
	cursor: pointer;
	padding: 15px;
	border-radius: 8px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-menu:hover {
	background-color: rgba(255, 255, 255, 0.1);
	transform: scale(1.05);
}

/* Hamburger Icon Container */
.hamburger-icon {
	width: 30px;
	height: 24px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}

/* Hamburger Lines */
.hamburger-icon .line {
	width: 100%;
	height: 3px;
	background-color: var(--white);
	border-radius: 2px;
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transform-origin: center;
	position: relative;
}

/* Line animations when menu is open */
body.menu-open .hamburger-icon .line1 {
	transform: rotate(45deg) translate(6px, 6px);
	background-color: var(--white);
}

body.menu-open .hamburger-icon .line2 {
	opacity: 0;
	transform: scaleX(0);
}

body.menu-open .hamburger-icon .line3 {
	transform: rotate(-45deg) translate(6px, -6px);
	background-color: var(--white);
}

.landing-page.menu-open .hamburger-icon .line1,
.landing-page.menu-open .hamburger-icon .line3 {
	background-color: var(--white);
}

/* Hover effects for individual lines */
.hamburger-icon:hover .line {
	background-color: var(--white);
}

.sticky-body.menu-open .hamburger-icon .line1,
.sticky-body.menu-open .hamburger-icon .line3 {
	background-color: var(--white);
}

/* Pulse effect when menu opens */
body.menu-open .app-menu {
	animation: menuPulse 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes menuPulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

/* Subtle glow effect on hover */
.app-menu::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 8px;
	/* background: linear-gradient(135deg, var(--orange), var(--coral)); */
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.app-menu:hover::before {
	opacity: 0.2;
}

/* Active state improvements */
body.menu-open .app-menu::before {
	opacity: 0.3;
}

/* Responsive adjustments */
@media (max-width: 1250px) {
	.hamburger-icon {
		width: 26px;
		height: 20px;
	}

	.hamburger-icon .line {
		height: 2.5px;
	}

	body.menu-open .hamburger-icon .line1 {
		transform: rotate(45deg) translate(5px, 5px);
	}

	body.menu-open .hamburger-icon .line3 {
		transform: rotate(-45deg) translate(5px, -5px);
	}
}

/* Logo container för att hålla båda logotyperna på samma position */
#logo {
	position: relative;
	display: block;
}

.logo-default {
	display: flex;
	transition: opacity 0.3s cubic-bezier(0.4, 0, 1, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 1;
	transform: scale(1) rotate(0deg);
}

.logo-menu-open {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s cubic-bezier(0, 0, 0.2, 1) 0.15s,
		transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
	transform: scale(0.95) rotate(-3deg);
}

/* Effekt / Byta logga vid öppen menyn*/
body.landing-page.menu-open .logo-default {
	/* opacity: 0; */
	transform: scale(0.95) rotate(3deg);
}

body.landing-page.menu-open .logo-menu-open {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1) rotate(0deg);
}

body.landing-page.menu-open header {
	box-shadow: unset;
}

/* Sticky-tillstånd - alltid logo-default */
.sticky-body .logo-menu-open {
	opacity: 0;
	pointer-events: none;
	display: none;
}

.sticky-body .logo-default {
	opacity: 1;
}

/* Åsidosätt menu-open-beteendet när sticky är aktiverat */
body.sticky-body.menu-open .logo-default {
	opacity: 1;
}

body.sticky-body.menu-open .logo-menu-open {
	opacity: 0;
	pointer-events: none;
}

/* ############### */
.header-holder {
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 0 50px;
	max-width: 2000px;
	margin: 0 auto;
}

header.sticky {
	z-index: 998;
}

header.sticky {
	background: var(--red-gradient-full-opacity3) !important;
	transition: all 0.4s ease;
	position: fixed;
	box-shadow: 0 2px 10px rgba(87, 87, 87, 0.31);
	top: 0;
	width: 100%;
}

header.sticky .app-menu {
	top: 20px;
}

header.sticky .header-holder {
	opacity: 0;
	height: 80px;
	-moz-animation: fadeIn 0.4s ease-in forwards;
	-webkit-animation: fadeIn 0.4s ease-in forwards;
	-o-animation: fadeIn 0.4s ease-in forwards;
	animation: fadeIn 0.4s ease-in forwards;
}

header.sticky .mainmenu li>ul {
	top: 80px;
}

header.sticky .mainmenu li>ul>li>ul {
	top: 0;
}

header.sticky .mainmenu a {
	font-size: 1.4rem;
}

header.sticky .mainmenu>li .desktop-arrow {
	bottom: 13px;
}

header.sticky .logo-default {
	opacity: 0;
	width: 100%;
	max-width: 10rem;
	position: relative;
	left: 0;
	-moz-animation: fadeIn 0.4s ease-in forwards;
	-webkit-animation: fadeIn 0.4s ease-in forwards;
	-o-animation: fadeIn 0.4s ease-in forwards;
	animation: fadeIn 0.4s ease-in forwards;
}

/* Se till att svarta loggan förblir dold även när sticky är aktivt */
header.sticky .logo-menu-open {
	opacity: 0 !important;
	pointer-events: none;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 0.5;
	}

	100% {
		opacity: 1;
	}
}

header img {
	width: 150px;
	padding: 16px 0;
	z-index: 2;
	display: block;
}

header nav {
	flex: 1;
	height: 100%;
	display: flex;
	justify-content: center;
}

.mainmenu {
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
	flex-direction: row;
	justify-content: flex-end;
	height: 100%;
}

.mainmenu li {
	position: relative;
	padding: 0;
}

.mainmenu li>ul li {
	padding: 0;
}

.mainmenu li>ul {
	position: absolute;
	display: none;
	background: var(--black);
	color: black;
	padding: 0;
	list-style-type: none;
	margin: 0;
	top: 110px;
	z-index: 200;
	min-width: 200px;
	box-shadow: 0 7px 14px rgba(171, 171, 171, 0.05), 0 5px 5px rgba(171, 171, 171, 0.05);
	border-top: 0;
	right: 0;
}

header.sticky .mainmenu li>ul {
	background: var(--black);
	color: black;
}

body.menu-open header.sticky .mainmenu li>ul {
	background: var(--white);
}

.mainmenu li>ul li a {
	padding: 1rem;
	width: 100%;
	text-align: center;
	display: block;
}

.mainmenu li>ul li a:hover {
	color: var(--red) !important;
}

.mainmenu li>ul>li>ul {
	display: none;
	right: calc(100% + -20px);
	top: 0;
	z-index: 300;
	right: 100%;
	background-color: var(--white);
}

header.sticky .mainmenu li>ul>li>ul {
	background-color: var(--white);
}

.mainmenu a.showsub {
	display: none;
}

.mainmenu a {
	color: var(--white);
	font-size: 1.8rem;
	font-weight: 400;
	display: flex;
	height: 100%;
	align-items: center;
	-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;
	padding: 0 1.5rem;
	text-transform: uppercase;
}

.mainmenu .open a {
	color: var(--neutralOrange);
}

.appmenu .mainmenu a {
	color: var(--black);
}

.mainmenu li.active {
	/* background-color: var(--lightGray); */
	color: var(--white);
}

.mainmenu li.active .desktop-arrow i,
.mainmenu li.active .showsub i {
	color: var(--white) !important;
}

.mainmenu li a.active {
	font-weight: normal;
}

.mainmenu a:hover {
	color: var(--black) !important;
}

header.sticky .mainmenu a:hover {
	color: var(--black);
}

.mainmenu ul li ul li a:hover {
	color: rgb(255 167 96) !important;
}

.menu-container {
	height: 100%;
	display: flex;
	justify-content: flex-end;
}

header.sticky .menu-container {
	opacity: 0;
	-moz-animation: fadeIn 0.4s ease-in forwards;
	-webkit-animation: fadeIn 0.4s ease-in forwards;
	-o-animation: fadeIn 0.4s ease-in forwards;
	animation: fadeIn 0.4s ease-in forwards;
}

.mainmenu>li .desktop-arrow {
	width: 20px;
	height: 20px;
	position: absolute;
	bottom: 20px;
	left: calc(50% - 10px);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 400;
	color: var(--white);
}

.mainmenu .desktop-arrow i {
	position: absolute;
	font-size: 11px;
}

.mainmenu>li>ul>li>.desktop-arrow {
	transform: rotate(90deg);
	left: 0;
	top: 24px;
}

.flex-wrapper {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

footer {
	width: 100%;
	background: var(--red-gradient-full-opacity3);
}

.footer-main {
	width: 100%;
	padding: 5rem 4rem 10rem 4rem;
	max-width: 1400px;
	margin: 0 auto;
}

.footer-33-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 auto;
}

.footer-33-wrapper .footer-33 {
	width: 100%;
	max-width: 80%;
	margin: 1.5rem 0;
	color: var(--darkGray);
	-o-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: flex;
	justify-content: center;
}

.footer-33-wrapper .footer-33:first-of-type {
	justify-content: center;
	width: 100%;
}

.footer-33-wrapper .footer-33 a {
	-o-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.footer-main .footer-33 a:hover {
	-o-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
	color: var(--black);
}

#footer-33-1 {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

#footer-33-2 {
	gap: 10rem;
	display: flex;
	align-items: center;
}

#footer-33-2 .partner-logo {
	max-width: 15rem;
	padding: 1rem;
}

.footer-logo {
	max-width: 200px;
	min-width: 200px;
}

.footer-logos {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: space-evenly;
}

.footer-logo img {
	width: 100%;
	height: auto;
}

.footer-main .footer-33 a.footer-social:hover {
	color: var(--coral);
	-o-transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.footer-main p,
.footer-main a {
	color: var(--white);
}

ul.footer-menu,
ul.footer-menu li {
	list-style-type: none;
	display: flex;
	gap: 2rem;
}

ul.footer-menu li a {
	font-size: 12px;
}

ul.footer-menu li ul {
	padding-left: 5px;
}

ul.footer-menu li ul li {
	display: flex;
	display: none;
}

ul.footer-menu li ul li::before {
	content: "-";
	padding-right: 10px;
	color: var(--darkGray);
}

ul.footer-menu .sub ul ul {
	display: none;
}

ul.footer-menu .showsub {
	display: none;
}

#footer-logo img {
	max-width: 15rem;
	height: auto;
	margin: 0 auto;
}

.header-social-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}

.header-social-wrapper .social-link-wrapper {
	padding: 0.7rem;
}

header.sticky .header-social-wrapper .social-link-wrapper {
	padding: 0.5rem;
}

header.sticky .header-social-wrapper .social-link-wrapper i {
	font-size: 2rem;
}

.main-menu-open-social-wrapper {
	display: none;
	width: 100%;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin-top: 3rem;
}

.main-menu-open-social-wrapper a {
	padding: 1rem !important;
}

body.menu-open .main-menu-open-social-wrapper {
	display: flex;
}

.footer-social-wrapper {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
	gap: 2.8rem;
}

.footer-social-wrapper a,
.header-social-wrapper a {
	color: var(--white);
	/* Ta bort margin-bottom som skapar alignment-problem */
}

.social-link-wrapper,
.social-link-wrapper-footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 1.5rem;
	border-radius: 50%;
	/* background: linear-gradient(135deg, var(--orange), var(--coral));*/
	background: white;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateY(0);
	/* box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3); */
	box-shadow: 0 4px 15px rgba(255, 53, 53, 0.3);
	overflow: hidden;
	will-change: transform, box-shadow;
}

.social-link-wrapper::before,
.social-link-wrapper-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background: linear-gradient(135deg, var(--lightOrange), var(--peach)); */
	background: white;
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 0;
}

.social-link-wrapper:hover::before,
.social-link-wrapper-footer:hover::before {
	opacity: 1;
}

.social-link-wrapper i,
.social-link-wrapper-footer i {
	font-size: 3rem;
	position: relative;
	z-index: 1;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	/* color: var(--white); */
	color: var(--red);
}

.social-link-wrapper:hover,
.social-link-wrapper-footer:hover {
	transform: translateY(-6px) scale(1.08);
	/* box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4); */
	box-shadow: 0 8px 25px rgba(255, 53, 53, 0.4);
	/* Ta bort den kontinuerliga animationen som gör det ryckigt */
}

.social-link-wrapper:hover i,
.social-link-wrapper-footer:hover i {
	/* Förenkla icon-animationen */
	color: var(--white);
}

.social-link-wrapper:active,
.social-link-wrapper-footer:active {
	transform: translateY(-4px) scale(1.05);
}

/* Facebook - Blå */
.social-link-wrapper:nth-child(1),
.social-link-wrapper-footer:nth-child(1) {
	/* background: linear-gradient(135deg, #1877f2, #4267b2);
	box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3); */
	background: white;
	/* box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3); */
	box-shadow: 0 4px 15px rgba(242, 31, 24, 0.3);
}

.social-link-wrapper:nth-child(1):hover::before,
.social-link-wrapper-footer:nth-child(1):hover::before {
	/* background: linear-gradient(135deg, #1e88e5, #5e72e4); */
	background: white;
}

.social-link-wrapper:nth-child(1):hover,
.social-link-wrapper-footer:nth-child(1):hover {
	/* box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5); */
	box-shadow: 0 8px 25px rgba(242, 24, 24, 0.5);
	transform: translateY(-6px) scale(1.08);
}

/* Instagram - Gradient från rosa till orange */
.social-link-wrapper:nth-child(2),
.social-link-wrapper-footer:nth-child(2) {
	/* background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45); */
	background: white;
	/* box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3); */
	box-shadow: 0 4px 15px rgba(250, 58, 58, 0.3);
}

.social-link-wrapper:nth-child(2):hover::before,
.social-link-wrapper-footer:nth-child(2):hover::before {
	/* background: linear-gradient(135deg, #f56040, #c13584); */
	background: white;
}

.social-link-wrapper:nth-child(2):hover,
.social-link-wrapper-footer:nth-child(2):hover {
	/* box-shadow: 0 8px 25px rgba(228, 64, 95, 0.5); */
	box-shadow: 0 8px 25px rgba(250, 64, 64, 0.5);
	transform: translateY(-6px) scale(1.08);
}

/* LinkedIn - Blå */
.social-link-wrapper:nth-child(3),
.social-link-wrapper-footer:nth-child(3) {
	/* background: linear-gradient(135deg, #0077b5, #005885); */
	background: white;
	/* box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3); */
	box-shadow: 0 4px 15px rgba(255, 49, 34, 0.3);
}

.social-link-wrapper:nth-child(3):hover::before,
.social-link-wrapper-footer:nth-child(3):hover::before {
	/* background: linear-gradient(135deg, #0e76a8, #006699); */
	background: white;
}

.social-link-wrapper:nth-child(3):hover,
.social-link-wrapper-footer:nth-child(3):hover {
	/* box-shadow: 0 8px 25px rgba(0, 119, 181, 0.5); */
	box-shadow: 0 8px 25px rgba(243, 40, 40, 0.5);
	transform: translateY(-6px) scale(1.08);
}

.social-link-wrapper:hover i,
.social-link-wrapper-footer:hover i {
	color: black;
}

/* Pulse effekt med CSS animationer - används inte längre för att undvika ryckighet */
@keyframes socialPulse {
	0% {
		transform: translateY(-8px) scale(1.1);
	}

	50% {
		transform: translateY(-10px) scale(1.15);
	}

	100% {
		transform: translateY(-8px) scale(1.1);
	}
}

/* Ta bort global glow-animation som gör det ryckigt */

.footer-social {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.footer-social i {
	font-size: 30px;
	margin-right: 0.75rem;
}

.footer-copy {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 10px 25px;
	background-color: var(--darkGray);
}

.footer-copy p,
.footer-copy a {
	color: var(--lightGray);
	font-size: 12px;
	padding-bottom: 0;
}

.footer-icons {
	text-align: center;
}

.footer-icons a,
.footer-icons div {
	color: var(--darkGray);
	font-size: 9px;
}

.footer-icons a {
	font-weight: bold;
}

.center {
	text-align: center;
}

.fat {
	font-weight: bold;
	padding-bottom: 2.5px;
}

.bold {
	font-weight: bold;
}

.tiny {
	font-size: 4px;
	line-height: 100%;
}

.loader {
	align-items: center;
	justify-content: center;
	display: none;
	padding-top: 25px;
}

.circle {
	background-color: var(--mediumGray);
	border-radius: 50%;
	width: 12px;
	height: 12px;
	margin: 4px;
	animation: bounce 0.5s ease-in infinite;
}

.circle:nth-of-type(2) {
	animation-delay: 0.1s;
}

.circle:nth-of-type(3) {
	animation-delay: 0.2s;
}

@keyframes bounce {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.loader-wrapper {
	width: 100%;
	display: none;
}

#message-confirm {
	display: flex;
}

.spinner {
	margin: 100px auto;
	width: 50px;
	height: 40px;
	text-align: center;
	font-size: 10px;
}

.spinner>div {
	background-color: var(--mediumGray);
	height: 100%;
	width: 6px;
	display: inline-block;
	-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
	animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.spinner .rect3 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

.spinner .rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.spinner .rect5 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {

	0%,
	40%,
	100% {
		-webkit-transform: scaleY(0.4);
	}

	20% {
		-webkit-transform: scaleY(1);
	}
}

@keyframes sk-stretchdelay {

	0%,
	40%,
	100% {
		-webkit-transform: scaleY(0.4);
		transform: scaleY(0.4);
	}

	20% {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}
}

.message-form-wrapper,
.form-wrapper {
	max-width: 750px;
	width: 77%;
	background: linear-gradient(73deg, rgb(10 9 9 / 55%) 0%, rgb(101 95 89 / 60%) 100%);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-radius: 18px;
	box-shadow:
		0 2px 4px rgba(0, 0, 0, 0.1),
		0 8px 16px rgba(0, 0, 0, 0.15),
		0 16px 32px rgba(0, 0, 0, 0.1);
	border: 1.5px solid rgba(255, 255, 255, 0.1);
	padding: 5.5rem 7rem;
	position: relative;
	z-index: 4;
	margin: 0 auto;
	margin-block: 4rem;
	will-change: transform;
	transform: translateZ(0);
}

.form-wrapper {
	width: 67%;
}

.message-form-wrapper::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: inherit;
	z-index: 3;
	background: rgba(193, 82%, 30%, 0.05);
}

.message-form-wrapper::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: inherit;
	z-index: 5;
	box-shadow:
		inset 0 1px 2px rgba(255, 255, 255, 0.1),
		inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.message-form-wrapper>* {
	position: relative;
	z-index: 6;
}

.message-form-wrapper>.contact-info>.contact-info-content {
	color: white;
}

.message-form-wrapper>.contact-form {
	background-color: transparent;
}

.message-form-wrapper>.contact-form label,
.message-form-wrapper>.contact-info h2,
.message-form-wrapper>.contact-info p,
.message-form-wrapper>.contact-form p,
.form-wrapper>.contact-form p,
.form-wrapper>.contact-form label,
.form-wrapper>.contact-info h2,
.form-wrapper>.contact-info p {
	color: var(--white);
}

.message-form-wrapper .contact-form input[type="text"],
.message-form-wrapper .contact-form input[type="email"],
.message-form-wrapper .contact-form select,
.message-form-wrapper .contact-form input .message-form-wrapper .contact-form textarea,
.form-wrapper .contact-form input[type="text"],
.form-wrapper .contact-form input[type="email"],
.form-wrapper .contact-form select,
.form-wrapper .contact-form input,
.form-wrapper .contact-form textarea {
	background-color: var(--white);
	color: #000000;
	border-radius: 0.75rem;
	padding: 0.8rem 1rem;
	font-size: 1.7rem;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
	outline: none;
}

.contact-info {
	width: 100%;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	position: relative;
}

.contact-info h2 {
	color: var(--white);
}

.contact-form {
	color: var(--darkGray);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem 4rem;
	padding-top: 2rem;
	width: 100%;
}

.contact-form h2 {
	padding-bottom: 10px;
}

/* Form field groups - each label + input combo */
.contact-form .form-field {
	display: flex;
	flex-direction: column;
}

/* Full width fields */
.contact-form .form-field-full {
	grid-column: 1 / -1;
	/* Tar upp hela bredden */
}

.contact-form .form-field label {
	display: block;
	margin: 0;
	font-size: 1.4rem;
	color: var(--white);
	font-weight: 600;
}

.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
	padding: 0.8rem 1rem;
	border: 1px solid var(--mediumGray);
	border-radius: 0.8rem;
	font-size: 1.6rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	outline: none;
}

.contact-form .form-field input:focus,
.contact-form .form-field select:focus,
.contact-form .form-field textarea:focus {
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form .form-field textarea {
	resize: vertical;
	min-height: 120px;
	font-family: inherit;
	color: black !important;
}

.contact-form .form-field select {
	cursor: pointer;
}

.contact-form .form-field input[type="file"] {
	padding: 0.8rem;
	border: 2px solid var(--white);
	background-color: var(--white);
	cursor: pointer;
}

.contact-form .form-field input[type="file"]:hover {
	border-color: var(--orange);
	background-color: #fff1dc;
}

/* Error messages */
.contact-form .error-message {
	color: #ff4b4b !important;
	font-size: 1.5rem;
	margin: 0;
	padding: 0;
}

/* GDPR checkbox special handling */
.contact-form .form-field-gdpr {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.contact-form .gdpr-wrapper {
	display: flex;
	align-items: flex-start;
	margin-top: 1rem;
	gap: 1.5rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
}

.contact-form .gdpr-wrapper:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
}

.contact-form .gdpr-checkbox-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 0.2rem;
}

.contact-form .gdpr-label {
	display: flex;
	align-items: center;
	gap: 0;
	cursor: pointer;
	margin: 0;
	width: 100%;
}

.contact-form .gdpr-label input[type="checkbox"] {
	margin: 0;
	flex-shrink: 0;
	width: 2.2rem;
	height: 2.2rem;
	cursor: pointer;
	accent-color: var(--red);
	border-radius: 0.4rem;
}

.contact-form .gdpr-text {
	font-size: 1.4rem;
	line-height: 1.6;
	color: var(--white);
	flex: 1;
}

.contact-form .gdpr-label a {
	color: var(--red);
	text-decoration: underline;
}

.contact-form .gdpr-label a:hover {
	color: var(--coral);
}

/* Button wrapper */
.contact-form .button-wrapper {
	grid-column: 1 / -1;
	display: flex;
	justify-content: flex-end;
	margin-top: 2rem;
}

/* Responsive design */
@media (max-width: 768px) {
	.contact-form {
		gap: 0.5rem;
	}
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
	padding: 0.6rem;
	display: block;
	border: none;
	min-width: 200px;
	margin-bottom: 10px;
	border: 1px solid;
	border-radius: 0.75rem;
}

.contact-form input[type="checkbox"] {
	margin-right: 10px;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
	cursor: pointer;
	border-radius: 0.75rem;
}

.contact-form textarea {
	background-color: var(--white);
	padding: 0.6rem;
	display: block;
	border: none;
	min-width: 200px;
	min-height: 200px;
	margin-bottom: 20px;
	resize: vertical;
	border: 1px solid white;
	outline: 0;
	border-radius: 0.75rem;
}

.contact-info .big-icon-wrapper .big-icon i {
	animation: twiggle 5s 3s ease forwards infinite;
}

textarea:focus,
input:focus,
button:focus {
	outline: none;
}

.button-wrapper {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.contact-form #contact-form-title {
	padding-bottom: 25px;
	color: #4d4c50;
}

.contact-form #submit-button {
	display: block;
	background: var(--lightOrange);
	border: 2px solid white;
	color: var(--white);
	margin-top: 25px;
	cursor: pointer;
	padding: 1.37rem 3.77rem;
	width: -moz-fit-content;
	width: fit-content;
	display: table;
	cursor: pointer;
	font-weight: 600;
	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;
	transition: all 0.4s ease;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-transform-origin: 0 100%;
	transform-origin: 0 100%;
	-webkit-appearance: none;
	appearance: none;
	/* text-transform: uppercase; */
	/* font-family: "Rajdhani", sans-serif; */
	font-family: sans-serif;
	letter-spacing: 2px;
	border-radius: 0.7rem;
}

.contact-form #submit-button:disabled {
	background-color: var(--orange);
	/* opacity: 0.7; */
	color: var(--white);
	cursor: not-allowed;
}

.contact-form #submit-button:hover {
	background: var(--lightOrangeAccent);
	color: var(--white);
	-webkit-animation-name: hvr-wobble-top;
	animation-name: hvr-wobble-top;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}

.contact-form #submit-button:disabled:hover {
	background-color: var(--blue2);
	cursor: not-allowed;
	-webkit-animation: none !important;
	animation: none !important;
}

.contact-form #submit-button i {
	color: var(--white);
}

.contact-confirmation-message {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: var(--white) !important;
}

/* Force single column layout when confirmation message is shown */
.contact-form:has(.contact-confirmation-message) {
	grid-template-columns: 1fr !important;
}

.contact-confirmation-message h1,
.contact-confirmation-message h2,
.contact-confirmation-message h3,
.contact-confirmation-message h4,
.contact-confirmation-message p {
	color: var(--white) !important;
}

select {
	padding: 5px;
	display: block;
	border: none;
	min-width: 200px;
	margin-bottom: 10px;
	border: 1px solid;
	background-color: var(--white);
	color: var(--white);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: no-repeat right 10px center, var(--blackGray);
	background-size: 12px;
}

@keyframes twiggle {
	0% {
		transform: scale(1);
		transform: rotate(180deg);
	}

	10% {
		transform: scale(1.05);
	}

	50% {
		transform: scale(1.25);
	}

	90% {
		transform: rotate(180deg);
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

.error-message {
	font-size: 12px;
	color: var(--red) !important;
	margin-bottom: 1.5rem;
}

.offer-form-wrapper .error-message {
	font-size: 14px;
	font-weight: 700;
}

/* Meddelande-notifiering vid skickat kontaktformulär */

#message-box {
	height: 50px;
	width: 100%;
	overflow: hidden;
	position: fixed;
	bottom: 0;
	z-index: 1;
	opacity: 0;
	background-color: var(--orange);
	animation-name: popUp;
	animation-duration: 5s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
	animation-delay: 1.5s;
}

#message-box p {
	text-align: center;
	line-height: 50px;
	font-weight: bold;
	font-size: 120%;
	color: var(--white);
}

@keyframes popUp {
	0% {
		bottom: -50px;
		opacity: 1;
	}

	10% {
		bottom: -25px;
		opacity: 1;
	}

	20% {
		bottom: 0px;
		opacity: 1;
	}

	79% {
		bottom: 0px;
		opacity: 1;
	}

	90% {
		bottom: -25px;
		opacity: 1;
	}

	99% {
		bottom: -50px;
		opacity: 1;
	}

	100% {
		bottom: -50px;
		opacity: 0;
	}
}

/* News */

.box-50-news,
.box-50-news:visited {
	width: 50%;
	width: calc(50% - 3rem);
	margin: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	color: var(--darkGray);
	border-radius: 0.3rem;
}

.box-50-news .box-date {
	background-color: var(--lightBlue);
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-flow: column;
	padding: 2.5rem;
	color: var(--darkGray);
	border-radius: 3px 3px 0 0;
}

.box-date-text-date {
	color: var(--darkGray);
	font-weight: bold;
	font-size: 16px;
}

.box-date-text-year {
	color: var(--darkGray);
	font-weight: bold;
	font-size: 14px;
}

.box-50-news .box-content {
	width: 100%;
	padding: 5rem;
	border-radius: 0 0 3px 3px;
}

.box-50-news .box-content h4 {
	color: var(--weboneBlue);
}

.box-50-news .box-content .box-content-date {
	font-size: 12px;
	padding-top: 10px;
	color: var(--lightGray);
}

.news-link {
	color: var(--mediumGray);
	font-weight: bold;
}

.single-news-header {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 80vh;
}

.single-news {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
	background-color: var(--white);
	margin: 1.5rem auto;
	padding: 1rem 3rem;
}

.single-news h1 {
	position: relative;
	padding-bottom: 10px;
}

.single-news img {
	margin: 15px 0;
}

#news-wrapper {
	width: 100%;
	padding-top: 50px;
	display: flex;
	flex-wrap: wrap;
}

.latest-news-wrapper {
	padding: 5rem 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.box-33-news {
	width: 33.33%;
	width: calc(33.33% - 3rem);
	margin: 1.5rem;
	background-color: var(--lightRed);
	border-radius: 0.3rem;
}

.box-33-news .box-image-container {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 65%;
}

.box-33-news .box-content {
	padding: 30px;
}

.box-33-news .item-action {
	margin-bottom: 0 !important;
}

#more-news-wrapper {
	width: 100%;
	padding: 0 1.5rem;
}

#more-news {
	margin: 50px auto;
	display: table;
}

.news-loader-wrapper {
	width: 100%;
	position: relative;
}

.news-loader {
	align-items: center;
	justify-content: center;
	display: none;
	padding-top: 25px;
}

/* SLideshows */

.box-slider-image {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	/* height: 75vh; */
	height: 60vh;
	min-height: 300px;
	width: 100%;
	position: relative;
}

.slider-text-holder {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	width: calc(100% - 30px);
	max-width: 1100px;
}

.slider-text-holder h1 {
	color: var(--white);
	font-size: 44px;
	padding-bottom: 15px;
}

.slider-text-holder p {
	color: var(--white);
	font-size: 22px;
	line-height: 175%;
}

.slider-text {
	padding: 20px 50px;
}

/* Iframe */

iframe {
	width: 100%;
	border: none;
	filter: grayscale(30%) contrast(1.1);
	transition: filter 0.4s ease;
}

iframe:hover {
	filter: grayscale(0%) contrast(1);
}

/* Map Container Enhancements */
.map {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.map::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg,
			rgba(0, 42, 66, 0.1) 0%,
			rgba(0, 42, 66, 0) 50%,
			rgba(0, 42, 66, 0.1) 100%);
	pointer-events: none;
	z-index: 1;
	animation: mapOverlay 3s ease-in-out infinite;
}

@keyframes mapOverlay {

	0%,
	100% {
		opacity: 0.5;
	}

	50% {
		opacity: 0.3;
	}
}

/** Gallery **/

.gallery-modal-layer {
	transform: translateZ(0);
	transform: translateX(-200%);
	transition: transform 0.5s cubic-bezier(0.07, 0.23, 0.34, 1);
	position: fixed;
	overflow-y: auto;
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* Firefox */
	-webkit-scrollbar: none;
	/* Safari and Chrome */
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-modal {
	background-color: var(--white);
	width: 80%;
	height: 80%;
	margin: auto;
	padding: 25px;
	position: relative;
	box-shadow: 0 7px 14px rgba(87, 87, 87, 0.12), 0 5px 5px rgba(88, 88, 88, 0.12);
}

.close-gallery-modal {
	position: absolute;
	top: -10px;
	right: -10px;
	cursor: pointer;
	padding: 15px;
	background-color: var(--weboneBlue);
}

.close-gallery-modal i {
	font-size: 25px;
	color: var(--white);
}

.gallery-modal-image {
	width: 100%;
	height: calc(100% - 100px);
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-modal-image img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.gallery-modal-inner {
	height: 100px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 0;
}

.gallery-modal-inner .prev,
.gallery-modal-inner .next {
	cursor: pointer;
}

.gallery-modal-inner .prev i,
.gallery-modal-inner .next i {
	color: var(--mediumGray);
	font-size: 50px;
}

.gallery-modal-content {
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	flex-flow: column;
	padding-top: 25px;
}

body.gallery-modal-open .gallery-modal-layer {
	transform: translateX(0);
	transform: translateY(0);
	position: fixed;
}

body.gallery-modal-open .gallery-modal {
	filter: drop-shadow(0 7px 14px rgba(87, 87, 87, 0.308));
}

.gallery-wrapper {
	padding: 50px 0;
	display: flex;
	flex-wrap: wrap;
}

.gallery-item {
	margin: 1.5rem;
	width: 100%;
	width: calc(20% - 3rem);
	cursor: pointer;
	background-color: var(--white);
	border-radius: 0.3rem;
}

.gallery-item img {
	max-width: 100%;
}

.available-jobs {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.footer-certification-wrapper {
	margin-top: 1.5rem;
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	align-items: center;
}

.footer-certification-wrapper img {
	height: 70px;
	width: auto;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}


@media all and (max-width: 1250px) {
	body.sticky-body #header-equalizer {
		height: 7rem;
	}

	body.menu-open main,
	body.menu-open footer {
		margin-left: 300px;
		position: relative;
		overflow: hidden;
	}

	body.menu-open main::after,
	body.menu-open footer::after {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.7);
		content: "";
		overflow: hidden;
		z-index: 2;
	}

	.header-content {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		padding-right: 62px;
	}

	.mainmenu.open {
		border-top: 2px solid #d7d7d7;
	}

	header.sticky img {
		/* width: 50px; */
		/* width: 32px; */
		width: 100%;
		max-width: 10rem;
		position: relative;
		left: 0;
		top: 0;
	}

	.header-content #logo {
		padding-bottom: 0;
	}

	header img {
		width: 100%;
		max-width: 10rem;
		padding: 0.3rem;
	}

	header.sticky .header-holder {
		height: 70px;
		-moz-animation: fadeIn 0.4s ease-in forwards;
		-webkit-animation: fadeIn 0.4s ease-in forwards;
		-o-animation: fadeIn 0.4s ease-in forwards;
		animation: fadeIn 0.4s ease-in forwards;
	}

	header.sticky .mainmenu li>ul {
		top: 0;
	}

	header.sticky .mainmenu li>ul>li>ul {
		top: 10px;
	}

	.header-holder {
		height: 70px;
		padding: 0;
	}

	header.sticky header-holder {
		height: 70px;
	}

	.menu-open {
		overflow: hidden;
	}

	.app-menu {
		display: block;
		z-index: 600;
		padding: 20px;
	}

	header.sticky .app-menu {
		position: relative;
		left: 0;
		top: 0;
	}

	.mainmenu.open {
		top: 70px;
		left: 0;
	}

	.mainmenu>li {
		font-size: 20px;
		margin: 20px 0 !important;
		margin: 0 !important;
		padding: 0;
		/* border-bottom: 1px solid #f3f3f3; */
	}

	.mainmenu li>ul {
		background-color: var(--white);
	}

	.mainmenu li>ul>li>ul {
		background-color: var(--white);
	}

	.mainmenu>li>ul>li {
		font-size: 16px;
	}

	.mainmenu>li>ul>li a {
		font-weight: normal !important;
		padding: 1rem 2.5rem;
	}

	.mainmenu>li>ul>li>ul>li {
		font-size: 15px;
	}

	.mainmenu>li>ul>li>ul>li a {
		font-weight: normal;
		margin-bottom: 10px;
		margin-top: -10px;
		margin-left: 5px;
	}

	.mainmenu {
		display: block;
		position: fixed;
		top: 70px;
		left: -100%;
		width: 300px;
		max-width: 300px;
		height: 100%;
		background-color: var(--white);
		z-index: 998;
		overflow: scroll;
		padding-bottom: 200px;
		transition: all 0.4s ease;
		box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15), 0 5px 5px rgba(171, 171, 171, 0.15);
	}

	.mainmenu a {
		padding: 1rem 5rem;
		color: #404040;
	}

	/* .mainmenu li>ul li a {
		text-align: left;
	} */

	.mainmenu li {
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.mainmenu>li .desktop-arrow {
		display: none;
	}

	.mainmenu a:after {
		display: none;
	}

	.mainmenu li a.active:after {
		display: none;
	}

	.mainmenu a.showsub {
		position: absolute;
		bottom: 0;
		width: 40px;
		height: 40px;
		right: 10px;
		top: 6px;
		display: flex;
		justify-content: center;
	}

	.showsub:hover {
		text-decoration: none;
		background-color: transparent !important;
	}

	.mainmenu>li>ul>li>a.showsub {
		right: 10px;
		top: 4px;
	}

	.mainmenu a.showsub i {
		color: var(--mediumGray);
		font-size: 16px;
	}

	.mainmenu li.sub a.showsub i {
		color: #000000;
		font-size: 16px;
	}

	.mainmenu a.showsub i.hide {
		display: none;
	}

	.mainmenu li>ul {
		position: relative;
		top: 11px;
		box-shadow: none;
		border-bottom: 1px solid #d5d5d5;
		margin-bottom: 2rem;
		background-color: var(--white);
		background-image: none;
		margin-top: -1.5rem;
		border-top: 1px solid #d5d5d5;
	}

	.mainmenu li>ul>li>ul {
		top: 10px;
		right: 0;
		background-color: var(--white);
		background-image: none;
	}

	header.sticky .mainmenu li>ul>li>ul {
		background-color: var(--white);
		background-image: none;
	}

	.slider-text {
		padding: 20px;
	}

	.gallery-item {
		width: calc(25% - 3rem);
	}
}

@media all and (max-width: 960px) {

	/* header img {
    width: 90px;
    padding: 19px 0;
  } */
	.single-news-header {
		min-height: 500px;
	}

	.footer-triangle {
		-webkit-clip-path: polygon(50% 65%, 0% 100%, 100% 100%);
		clip-path: polygon(50% 65%, 0% 100%, 100% 100%);
	}

	.footer-main .icons-wrapper i {
		font-size: 24px;
		padding: 12px;
	}

	.footer-top:after {
		background-color: transparent;
	}

	.gallery-item {
		width: calc(33.33% - 3rem);
	}

	.single-news {
		padding: 25px 20px;
	}

	.box-50-news .box-content {
		padding: 3.5rem;
	}

	.form-wrapper {
		width: 80%;
	}

	.message-form-wrapper {
		width: 90%;
		padding: 4rem 10rem;
	}

	.footer-logo {
		width: 100%;
		max-width: 200px;
		min-width: 200px;
		padding: 30px;
	}

	.footer-logos {
		flex-wrap: wrap;
	}

	.header-social-wrapper {
		display: none;
	}
}

@media all and (max-width: 768px) {

	h1,
	h2:not(.full-special h2),
	h3,
	h4 {
		text-align: center;
	}

	h1,
	section.section-header>div .section-text-wrapper h1,
	section.section-header>div .section-text-wrapper h1>span {
		font-size: 24px !important;
	}

	h2 {
		font-size: 20px;
	}

	h3 {
		font-size: 18px;
	}

	h4 {
		font-size: 16px;
	}

	p,
	a,
	label,
	li {
		font-size: 14px;
	}

	.slider-text-holder h1 {
		font-size: 24px;
	}

	.slider-text-holder p {
		font-size: 16px;
		line-height: 150%;
	}

	.box-slider-image {
		height: 50vh;
	}

	.gallery-wrapper {
		columns: 2;
	}

	.single-news-header {
		min-height: 400px;
	}

	.form-wrapper {
		flex-flow: column;
		width: 100%;
		margin: 0;
	}

	.contact-form {
		width: 100%;
		border-radius: 0;
		padding: 50px;
	}

	.contact-info {
		width: 100%;
		border-radius: 0;
		padding: 25px;
		background-attachment: unset !important;
	}

	.contact-info .big-icon-wrapper {
		padding: 25px;
	}

	.contact-info .big-icon-wrapper .big-icon {
		font-size: 50px;
		color: var(--white);
	}

	.contact-info .big-icon-wrapper .big-icon i {
		font-size: 50px;
		color: var(--white);
	}

	.gallery-item {
		width: calc(50% - 3rem);
	}

	.box-50-news {
		flex-flow: column;
		width: calc(100% - 4rem);
		margin: 1.5rem 2rem;
	}

	.box-50-news .box-date {
		width: 100%;
		padding: 25px 0;
	}

	.box-33-news {
		width: calc(100% - 4rem);
		margin: 1.5rem 2rem;
	}

	.contact-info .big-icon-wrapper .big-icon {
		font-size: 50px;
		color: var(--white);
	}

	.contact-form {
		display: flex;
		flex-direction: column;
		padding: 0 20px;
		border-radius: 0;
	}

	/* GDPR checkbox mobile adjustments */
	.contact-form .gdpr-wrapper {
		padding: 1.2rem;
		gap: 1.2rem;
	}

	.contact-form .gdpr-label input[type="checkbox"] {
		width: 2rem;
		height: 2rem;
	}

	.contact-form .gdpr-text {
		font-size: 1.3rem;
		line-height: 1.7;
	}

	.contact-form .button-wrapper {
		justify-content: center;
	}

	.form-wrapper,
	.contact-info,
	.contact-info::after {
		border-radius: 0;
	}

	.footer-main .footer-33 {
		width: 100%;
		width: calc(50% - 3rem);
		margin: 0;
	}

	.footer-main {
		padding: 5rem 2rem;
	}

	.footer-33-wrapper .footer-33 {
		padding: 1.5rem 0;
	}

	#footer-33-2 {
		border: none;
	}

	#footer-33-2 .partner-logo {
		max-width: 10rem;
		padding: 1rem;
	}

	.footer-33 .footer-contact-info {
		text-align: center;
	}

	#footer-33-3 {
		justify-content: center;
		display: flex;
	}

	#footer-33-3 ul {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0.5rem;
	}

	#footer-33-3 ul li {
		width: 100%;
	}

	#footer-33-3 .footer-social {
		display: flex;
		justify-content: center;
	}

	.footer-menu {
		text-align: center;
	}

	ul.footer-menu {
		flex-direction: column;
		gap: 0.5rem;
	}

	ul.footer-menu li {
		gap: 0.3rem;
	}

	.footer-social-wrapper,
	.header-social-wrapper {
		align-items: center;
		gap: 1rem;
	}

	.social-link-wrapper {
		padding: 1rem;
	}

	.social-link-wrapper i {
		font-size: 2.5rem;
	}

	.message-form-wrapper {
		padding: 0.5rem 2.5rem 2rem 2.5rem;
	}

	#footer-33-2 {
		flex-direction: column;
		gap: 0;
	}
}

@media all and (max-width: 550px) {

	p,
	a,
	label,
	li {
		font-size: 14px;
	}

	.gallery-wrapper {
		columns: 1;
	}

	.gallery-item {
		width: 100%;
		margin: 1rem 0;
		padding: 0 2rem;
	}

	.single-news-header {
		min-height: 350px;
	}

	.footer-main {
		padding: 50px 0;
	}

	.footer-copy p,
	.footer-copy a {
		font-size: 8px;
	}

	.footer-main .icons-wrapper i {
		font-size: 20px;
		padding: 10px;
	}

	.footer-main .footer-33 {
		width: 100%;
		margin: 0;
		padding: 20px;
	}

	.footer-social-wrapper {
		gap: 1.8rem;
	}

	.social-link-wrapper {
		padding: 0.8rem;
	}

	.social-link-wrapper i {
		font-size: 2rem;
	}

	.gallery-modal-inner {
		padding: 10px;
	}

	.gallery-modal-inner .next i,
	.gallery-modal-inner .prev i {
		font-size: 20px;
	}

	.gallery-modal {
		padding: 25px;
	}

	.close-gallery-modal {
		padding: 10px;
	}

	.close-gallery-modal i {
		font-size: 20px;
	}

	.full-special .box-content p {
		line-height: 6rem;
	}

	.message-form-wrapper {
		padding: 0.5rem 1rem 2rem 1rem;
	}

	/* GDPR checkbox extra small screens */
	.contact-form .gdpr-wrapper {
		gap: 0.5rem;
		align-items: center;
		margin: 3rem 0 0 0;
	}

	.contact-form .gdpr-checkbox-wrapper {
		margin-top: 0;
	}

	.contact-form .input-gdpr label a {
		display: block !important;
	}

	.contact-form .gdpr-label {
		flex-direction: row;
		gap: 1.2rem;
	}

	.contact-form .gdpr-label input[type="checkbox"] {
		width: 1.8rem;
		height: 1.8rem;
		min-width: 3.8rem;
	}

	.contact-form .gdpr-text {
		font-size: 1.2rem;
		line-height: 1.8;
	}

	.full-special .box-content h1 {
		font-size: 3.3rem !important;
		text-align: left;
	}

	.full-special .box-content p {
		font-size: 1.8rem !important;
		line-height: 3rem !important;
	}


	.footer-certification-wrapper img {
		height: 50px;
	}

	.mainmenu a {
		padding: 1rem 4rem;
	}

	.mainmenu>li>ul>li a {
		padding: 0.6rem 2.5rem;
	}
}

@media all and (max-width: 480px) {
	.message-form-wrapper {
		width: 100%;
		padding: 0 0.3rem 2rem 0.3rem;
		margin: 0 auto;
		border-radius: 0;
	}

	.contact-form {
		padding: 2rem;
	}

	.social-link-wrapper-footer {
		padding: 1.1rem;
	}

	.footer-certification-wrapper {
		display: none;
	}
}
