:root {
	--maxWidth: 1400px;
	--menuWidth: 400px;
}

html,
body {
	width: 100%;
	height: 100%;
	/* overflow-y: auto; */
}
body {
	font: 300 14px/1.3 "Muli", sans-serif;
	overflow-x: hidden;
	background-color: #f5f6ff;
	position: relative;
}

a {
	cursor: pointer;
}

b {
	font-weight: 700;
}

#modalWrapper {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background-color: rgba(0, 0, 0, 0.75);
	/* backdrop-filter: blur(10px); */
	display: grid;
	place-content: center;
}

.formElement {
	overflow-y: auto;
	width: 100%;
	height: 100%;
	max-width: 500px;
	max-height: 80vh;
	background: #fff;
	border-radius: 24px;
	display: flex;
	flex-direction: column;
	gap: 1em;
	padding: 40px;
	position: relative;
	box-shadow: 0 0 5em -1em #000;
}

p.important {
	font-weight: 700;
	padding: 8px 0 4px;
}

#modalWrapper h2 {
	font-weight: 700;
	font-family: "Raleway", sans-serif;
	font-size: 1.8em;
	text-transform: uppercase;
	color: #ff8279;
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: 1px solid #ff8279;
}

.closeButton {
	position: absolute;
	top: 24px;
	right: 24px;
	cursor: pointer;
	z-index: 11001;
}

form {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

form .flexWrapper {
	display: flex;
	gap: 1em;
}

form .buttonWrapper {
	display: flex;
	gap: 1em;
	justify-content: flex-end;
}

form button {
	font-weight: 700;
	border: 2px solid #ff8279;
	background: #eee;
	color: #000;
	border-radius: 6px;
	padding: 10px 32px;
	transition: all 0.3s;
	cursor: pointer;
}

form button:hover {
	box-shadow: 0 0 24px rgba(0, 0, 0, 0.3);
	border-color: #fff;
	border-radius: 2em;
}

form button.accent {
	background-color: #ff8279;
	color: #fff;
}

form input,
form textarea {
	width: 100%;
	font-family: "Muli", sans-serif;
	border: 2px solid #eee;
	background: none;
	border-radius: 4px;
	padding: 6px 8px;
	transition: all 0.25s;
	font-size: 12px;
	line-height: 1.1em;
}

form input:focus,
form textarea:focus {
	border-color: #ffc800;
}

section {
	min-height: 100vh;
	position: relative;
	display: flex;
	flex-direction: column;
}

header {
	display: flex;
	flex-direction: column;
	min-height: 50vh;
	background: linear-gradient(-45deg, #ee7752, #ddad00, #e73c7e, #23a6d5, #ddad00, #23d5ab);
	background-size: 800%;
	animation: GradientAnimation 20s linear infinite;
	color: #fff;
	position: relative;
	margin-top: 84px;
}

header h1 {
	font-size: clamp(3em, 6vw, 8em);
	text-transform: uppercase;
	font-weight: 700;
	position: relative;
	text-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
}

header h1::after {
	position: absolute;
	top: 10%;
	left: -5%;
	font-size: 2em;
	line-height: 1;
	content: attr(data-alt);
	color: transparent;
	text-transform: lowercase;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.1);
	transform: rotateZ(180deg);
	text-shadow: none;
	width: max-content;
}

header p {
	font-size: clamp(1em, 2vw, 3.5em);
	text-transform: uppercase;
	font-weight: 400;
	text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
}

header .hdr-wrapper {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	gap: 2em;
}

img.illustration {
	display: block;
	margin: 0 auto 80px;
}

.content-wrapper {
	background-color: #f5f6ff;
	max-width: var(--maxWidth);
	font-size: clamp(1.1em, 1.5vw, 1.5em);
	padding: clamp(2em, 6vw, 8em);
	margin: 0 auto;
	flex: 1;
}

#testimonials {
	min-height: 100vh;
	background: #fff url("/img/bgs-testimonials.jpg") no-repeat center center;
	background-attachment: fixed;
	background-size: cover;
	display: grid;
	place-content: center;
	padding: 2em;
}

#testimonials h1,
#testimonials h2 {
	text-align: center;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 20px;
}

#testimonials blockquote {
	margin: 1em 0;
}

#testimonials h1 {
	font-size: 4em;
	color: #bbb;
}

#testimonials h2 {
	font-size: 1.5em;
	color: #000;
	margin-bottom: 3em;
}

#testimonials_wrapper {
	max-width: var(--maxWidth);
	display: flex;
	flex-direction: column;
}

#testimonials_columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3em;
	margin-bottom: 36px;
}

.testimonials_itemwrapper {
	display: grid;
	place-content: center;
}

#testimonials_customlogos {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 30px;
}

#testimonials_customlogos p {
	flex: 1 1 250px;
	display: block;
	text-align: center;
}

#testimonials_customlogos img {
	display: block;
	width: 100%;
	max-width: 250px;
	height: auto;
	border-radius: 12px;
	margin: auto;
}

testimonials_customlogos .hidden-flex-item {
	content: "";
	visibility: hidden;
}

.testimonials_item {
	padding: 2em 3em;
	width: 100%;
	background-color: #fff;
	border-radius: 12px;
	position: relative;
}

.testimonials_item::before {
	position: absolute;
	top: -14px;
	left: 20px;
	content: url("/assets/quote.svg");
}

.testimonials_item .title {
	font-weight: 700;
	color: #bbb;
	font-size: 0.8em;
}

.testimonials_item .title b {
	color: #555;
}

.testimonials_item .title span {
	font-weight: 400;
	color: #222;
}

.content-wrapper div p {
	margin-bottom: 20px;
}

.content-wrapper div p:last-of-type {
	margin-bottom: 0;
}

.onecol {
	padding-bottom: 4em;
}

.onecol:last-of-type {
	padding-bottom: 0;
}

.onecol h2 {
	color: #aaa;
	font-size: 1.5em;
	font-family: "Raleway", sans-serif;
	padding-bottom: 30px;
	font-weight: 300;
	text-transform: uppercase;
}

.cardSection {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 5em;
}

.cardSection:last-of-type {
	padding-bottom: 0;
}

.cardSection .logos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 1fr;
	max-width: 760px;
	gap: 12px;
	margin: 2em auto;
}

.cardSection .logos.five {
	grid-template-columns: repeat(5, 1fr);
	grid-auto-rows: 1fr;
	max-width: 1200px;
	gap: 12px;
	margin: 0 auto;
}

.cardSection .logos .item {
	padding: 1em 2em;
	border-radius: 12px;
	background-color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cardSection img {
	max-height: 50px;
	width: 100%;
	object-fit: contain;
}

.cardSection h2 {
	color: #ccc;
	font-size: 2em;
	font-family: "Raleway", sans-serif;
	padding-bottom: 30px;
	font-weight: 300;
	text-transform: uppercase;
}

.rasterBox {
	padding: 50px 80px !important;
	color: #fff;
	margin: 0 auto 120px;
	max-width: 1000px;
	min-height: 60vh;
	display: flex;
	justify-content: center;
	flex-direction: column;
	transition: all 0.25s;
	box-shadow: 0 0 100px rgba(0, 0, 0, 0.2);
}

.rasterBox.dataScience {
	background: #5c8df0 url("/assets/data-science.svg") no-repeat 100% 100%;
	background-size: 400px;
}

.rasterBox.itServices {
	background: #fff url("/assets/it-services.svg") no-repeat 100% 100%;
	background-size: 400px;
	color: #000;
}

.rasterBox.itServices h2 {
	color: #555;
}

.rasterBox.webServices {
	background: #8e88df url("/assets/web-services-2.svg") no-repeat 100% 100%;
	background-size: 400px;
}

.rasterBox.solutions {
	background: #ff8279 url("/assets/solutions.svg") no-repeat bottom right;
	background-size: 400px;
}

.rasterBox:last-of-type {
	margin-bottom: 0;
}

.rasterBox h2 {
	font-family: "Raleway", sans-serif;
	font-weight: 300;
	font-size: 1.8em;
	color: #fff;
}

.rasterBox p {
	max-width: 60%;
}

.interested {
	width: 100%;
	margin: 40px auto;
	background: #ffc800 url("/assets/smiles.png") no-repeat 0 0;
	background-size: contain;
	color: #000;
	font-size: 2em;
	display: grid;
	place-content: center;
	border-radius: 24px;
	cursor: pointer;
}

.interested .wrapper {
	max-width: 50%;
	margin-left: 500px;
	padding: 2em;
}

.interested .banner-title,
.interested .banner-talk {
	font-family: "Fredoka One", cursive;
}

.interested .banner-text {
	font-size: 0.7em;
}

.interested .banner-talk {
	color: #eb0;
	font-size: 1.7em;
	position: relative;
	transform: rotateZ(-10deg);
}

.interested .banner-talk::before {
	position: absolute;
	inset: 30px 0 0 20px;
	font-size: 0.6em;
	content: attr(data-alt);
	color: #fff;
	text-transform: none;
	text-shadow: 0 0 16px #f28500;
	transform: rotateZ(5deg);
}

#introVid {
	position: fixed;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -1;
	object-fit: cover;
}

#introLogo {
	width: 50%;
	text-align: right;
	color: #fff;
	font-size: 3em;
	line-height: 1rem;
}

#introLogo img {
	filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.5));
}

#introEmblem {
	position: absolute;
	right: 20vw;
	bottom: 20vh;
	width: 30%;
	opacity: 0.8;
}

#mainSections {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	color: #fff;
}

#firstScene {
	padding: 20vh 16vw 0;
}

#introSlogan {
	display: grid;
	grid-template-columns: max-content max-content;
	font-size: 3.5em;
	gap: 20px;
	align-items: center;
	margin: 0;
	text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.5);
	background: transparent url("/img/qbs-team-1.png") no-repeat 0 0;
	min-height: 575px;
	justify-content: center;
}

#introSlogan .partA {
	text-align: right;
}

#introSlogan .partA .spanA {
	font-weight: 700;
	font-size: 1.5em;
}

#introSlogan .partA .spanB {
	font-weight: 500;
	font-size: 1.2em;
}

#introSlogan .partB {
	font-weight: 900;
	font-size: 4em;
}

#teamSlogan {
	padding: 0;
	color: #fff;
	font-size: 4em;
	font-weight: 300;
	text-align: right;
	background: transparent url("/img/qbs-team-2.jpg") no-repeat 0 0;
	background-size: cover;
	min-height: 797px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#collabSlogan {
	color: #fff;
	font-size: 3em;
	min-height: 80vh;
	font-weight: 700;
	text-align: center;
	background: #fff url("/img/bgs-collab.jpg") no-repeat center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-shadow: 4px 4px 16px #000;
	padding: 2em;
}
#collabSlogan #locations {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1em;
	margin: 2em 0;
	max-width: var(--maxWidth);
	width: 100%;
}

#collabSlogan .wrapper {
	width: 100%;
	max-width: var(--maxWidth);
	margin: auto;
}

#collabSlogan #locations .elm {
	padding: 1.5em 1em;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 16px;
	font-size: 0.4em;
	font-weight: 300;
	border: 2px solid #fff;
	transition: background-color 0.25s;
	display: grid;
	place-content: center;
	backdrop-filter: blur(5px);
}

#collabSlogan #locations .elm:hover {
	background-color: rgba(0, 0, 0, 0.9);
}
#teamSlogan .wrapper {
	padding: 40px 60px;
	border-radius: 12px;
	backdrop-filter: blur(6px);
	background: rgba(0, 0, 0, 0.2);
}

#teamsPoster {
	background: linear-gradient(-90deg, transparent 100px, #eee 101px, #eee 400px, transparent 401px), url("/img/qbs-team-3.jpg");
	background-repeat: no-repeat, no-repeat;
	background-position: top left, top left;
	min-height: 140px;
}

.wrapAnchor {
	padding: 100px 0 0;
}

.wrapAnchor:first-of-type {
	padding-top: 50px;
}

#mainMenu #menu {
	margin: 0 auto;
	width: 100%;
	max-width: var(--maxWidth);
}

#mainMenu {
	position: sticky;
	top: -1px;
	z-index: 1000;
	transition: background 0.3s;
	margin-top: -140px;
	padding: 24px;
}

#mainMenu.outPages {
	position: fixed;
	top: -1;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s;
	margin-top: 0;
	justify-content: flex-end;
}

#mainMenu.isSticky {
	background: #f5f6ff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
	justify-content: flex-end;
}

nav {
	display: flex;
	justify-content: flex-end;
}

#mainMenu ul {
	display: flex;
	gap: 16px;
	justify-content: center;
	text-transform: uppercase;
	width: 100%;
}

nav ul li {
	font-weight: 400;
	border: 2px solid transparent;
	font-size: 0.9em;
	background-color: rgba(255, 255, 255, 0.75);
	border-radius: 4px;
}

nav ul li {
	display: flex;
	align-items: center;
	justify-content: center;
}

#mainMenu li#nav-logo {
	opacity: 0;
	margin-right: 0;
	background: none;
	border: none;
	width: 0;
}

#mainMenu.isSticky li#nav-logo {
	margin-right: auto;
	width: auto;
	opacity: 1;
}

nav.isSticky li#nav-logo {
	opacity: 1;
}

nav li#nav-logo a {
	padding: 0;
}

nav li#nav-logo img {
	height: 36px;
	width: auto;
}

nav li.accented {
	background: #f58315;
	color: #fff;
	box-shadow: 0 0 24px -8px rgba(0, 0, 0, 0.6);
	border-color: #fff;
}

nav ul li a {
	padding: 8px 18px;
	font-weight: 700;
	z-index: 99;
}

footer {
	background: #222;
	padding: 80px 50px;
	color: #fff;
	font-size: 10px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
	gap: 24px;
}

footer a {
	display: inline-block;
}

footer #tags a::after {
	content: "\00a0\00a0\00a0";
}

footer #tags a:last-of-type::after {
	content: "";
}

footer #logos {
	text-align: center;
}

footer #logos img {
	display: block;
	height: auto;
}

footer #logos .mainlogo {
	width: 120px;
}

footer .socialicons {
	margin-top: 20px;
	display: flex;
	gap: 12px;
	place-content: center;
}

footer .socialicons img {
	width: 24px;
}

#mainMenu .current {
	/* color: #f58315; */
	border-color: #f28500;
	pointer-events: none;
}

#mainMenu .sickHover.current::before,
#mainMenu .sickHover.current {
	background-color: transparent;
	text-shadow: 0 0 2px #fff, 0 0 2px #fff;
	font-weight: 700;
}

#globamainMenulMenu .sickHover:hover {
	text-shadow: 0 0 2px #fff, 0 0 2px #fff;
}

.sickHover::before {
	transform: scaleX(0);
	transform-origin: bottom right;
}

.sickHover:hover::before {
	transform: scaleX(1);
	transform-origin: bottom left;
}

.sickHover:hover {
	color: #fff !important;
	z-index: 1;
}

.sickHover::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #ffc800;
	transition: transform 0.3s linear;
	border-radius: 4px;
}

.sickHover {
	position: relative;
	transition: color 0.3s ease-in-out;
	border-radius: 4px;
}

.accented.sickHover:hover {
	color: #f58315 !important;
}

.accented.sickHover::before {
	background: #fff;
}

#clearContent {
	background: linear-gradient(-90deg, #fff 100px, #eee 101px, #eee 400px, #fff 401px);
	background-repeat: no-repeat;
	background-position: top left;
	padding-left: clamp(10%, 5vw, 40%);
	padding-right: clamp(10%, 5vw, 40%);
	padding-bottom: 12%;
	font-size: clamp(1em, 3vw, 2em);
	font-weight: 300;
	line-height: 1.2;
	text-align: center;
}

#clearContent h1 {
	margin: 60px 0;
	font-size: clamp(2rem, 5vw, 4rem);
	text-transform: uppercase;
}

#digitalContent .reversed {
	position: absolute;
	top: 10%;
	right: 0;
	width: 100%;
	text-align: center;
	font-size: 6em;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.25);
	transform: rotateZ(180deg);
}

@keyframes GradientAnimation {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

#digitalContent {
	position: relative;
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: GradientAnimation 6s linear infinite;
	padding: 150px 250px calc(150px + 20vh);
	font-size: 2.2em;
	font-weight: 300;
	line-height: 1.2;
	color: #fff;
	display: flex;
	gap: 36px;
	min-height: 70vh;
	flex-direction: column;
	justify-content: center;
}

#digitalContent h1 {
	font-size: 2em;
	font-weight: 900;
	width: fit-content;
}

#comptencesContainer {
	background: #fff url("/assets/4853433.jpg") no-repeat center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	margin-top: -20vh;
	clip-path: ellipse(95% 100% at 50% 100%);
	padding: clamp(20px, 10vw, 60px);
}

#comptencesWrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	width: 100%;
	max-width: var(--maxWidth);
	margin-bottom: 30px;
}

#comptencesContainer h2 {
	font-size: clamp(4em, 8vw, 6em);
	font-weight: 900;
	color: #ddd;
	text-transform: uppercase;
	margin: 40px 0;
	width: 100%;
	text-align: center;
}

#comptencesContainer .flip-card {
	cursor: pointer;
}

#comptencesContainer .flip-card .icons {
	margin: 0 auto;
	transition: all 0.5s ease-in-out;
}

.flip-card .icons:hover {
	transform: rotateY(-180deg);
}

#comptencesContainer .flip-card .description {
	margin-bottom: 1.5em;
}

#comptencesContainer .flip-card .description p {
	padding: 6px 0;
	text-align: left;
}

#comptencesContainer .flip-card .description p:last-of-type {
	display: none;
}

#comptencesContainer .flip-card .title {
	font-weight: 700;
	font-size: 1.2em;
	margin: 1em 0;
}

.flip-card {
	background-color: transparent;
	width: 100%;
	max-width: 300px;
}

.flip-card .flip-discover {
	box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
	padding: 8px 32px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 8px;
	transition: all 0.5s;
	background: #fff;
	border: 2px solid #fff;
	color: #fff;
	display: block;
	width: fit-content;
	margin: 0 auto;
	transition: all 0.3s ease-in-out;
}

.flip-card .flip-discover:hover {
	transform: rotateZ(-10deg);
}

#comp-solutions .title {
	color: #5da745;
}
#comp-web .title {
	color: #016aa0;
}
#comp-ai .title {
	color: #9267ac;
}
#comp-it .title {
	color: #dba727;
}

#comp-solutions .flip-discover {
	background-color: #5da745;
}
#comp-web .flip-discover {
	background-color: #016aa0;
}
#comp-ai .flip-discover {
	background-color: #9267ac;
}
#comp-it .flip-discover {
	background-color: #dba727;
}

.Raleway {
	font-family: "Raleway", sans-serif;
}

.flexGrow {
	flex: 1;
}

.area {
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.circles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.circles li {
	position: absolute;
	display: block;
	list-style: none;
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	animation: animate 25s linear infinite;
	bottom: -150px;
}

.circles li:nth-child(1) {
	left: 25%;
	width: 80px;
	height: 80px;
	animation-delay: 0s;
	background: rgba(255, 255, 255, 0.4);
}

.circles li:nth-child(2) {
	left: 10%;
	width: 20px;
	height: 20px;
	animation-delay: 2s;
	animation-duration: 12s;
	background: rgba(255, 255, 255, 0.1);
}

.circles li:nth-child(3) {
	left: 70%;
	width: 20px;
	height: 20px;
	animation-delay: 4s;
}

.circles li:nth-child(4) {
	left: 40%;
	width: 60px;
	height: 60px;
	animation-delay: 0s;
	animation-duration: 18s;
	background: rgba(255, 255, 255, 0.5);
}

.circles li:nth-child(5) {
	left: 65%;
	width: 20px;
	height: 20px;
	animation-delay: 0s;
}

.circles li:nth-child(6) {
	left: 75%;
	width: 110px;
	height: 110px;
	animation-delay: 3s;
	background: rgba(255, 255, 255, 0.6);
}

.circles li:nth-child(7) {
	left: 35%;
	width: 150px;
	height: 150px;
	animation-delay: 7s;
}

.circles li:nth-child(8) {
	left: 50%;
	width: 25px;
	height: 25px;
	animation-delay: 15s;
	animation-duration: 45s;
	background: rgba(255, 255, 255, 0.7);
}

.circles li:nth-child(9) {
	left: 20%;
	width: 15px;
	height: 15px;
	animation-delay: 2s;
	animation-duration: 35s;
}

.circles li:nth-child(10) {
	left: 85%;
	width: 150px;
	height: 150px;
	animation-delay: 0s;
	animation-duration: 11s;
}

@keyframes animate {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
		border-radius: 0;
	}

	100% {
		transform: translateY(-1000px) rotate(720deg);
		opacity: 0;
		border-radius: 50%;
	}
}

.spanall {
	grid-column: 1/-1;
}

.centerText {
	text-align: center !important;
}

.rightText {
	text-align: right !important;
}

.leftText {
	text-align: left !important;
}

.ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 480px) {
	body {
		background-image: url("/img/bgs-portrait.jpg");
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		background-attachment: fixed;
	}
	#introVid {
		display: none;
	}
	#introLogo {
		width: 100%;
		line-height: 1em;
	}
	.flexGrow {
		display: flex;
		align-items: center;
		padding: 5vw;
	}
	#firstScene {
		padding: 5vh 5vw;
	}
	#introEmblem {
		width: 70vw;
		left: 15vw;
		top: 15vh;
	}

	.interested {
		background-size: contain;
		background-position: 0 0;
		height: auto;
		font-size: 1.6em;
		margin: 0 0 2em;
	}
	.interested .wrapper {
		margin: 260px 0 0;
		max-width: 100%;
	}
	form .flexWrapper {
		flex-direction: column;
	}
	#modalWrapper {
		place-content: start;
	}

	.cardSection .logos,
	.cardSection .logos.five {
		grid-template-columns: 80%;
		place-content: center;
	}

	nav ul li a {
		padding: 16px;
		width: 100%;
		text-align: center;
	}

	nav li#nav-logo img {
		margin: 0 auto;
	}
	#collabSlogan #locations {
		grid-template-columns: 1fr;
		margin-bottom: 0;
		gap: 0.5em;
	}
	#comptencesWrapper {
		grid-template-columns: 1fr;
	}

	footer {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
}

@media (max-width: 960px) {
	.flip-card {
		margin: 0 auto;
	}

	#testimonials_columns {
		grid-template-columns: 1fr;
		gap: 2em;
	}

	#testimonials h1 {
		font-size: 3em;
	}

	.onecol {
		padding-bottom: 2em;
	}

	.cardSection {
		margin-bottom: 2em;
	}

	.formElement {
		width: 100%;
		max-height: 100%;
		margin: 0;
		border-radius: 0;
	}

	#collabSlogan {
		padding: 1em;
	}
	header {
		margin-top: 0;
		min-height: 70vh;
	}

	header .hdr-wrapper {
		flex-direction: column;
		gap: 0;
	}
	#introSlogan {
		grid-template-columns: 1fr;
		font-size: 2em;
		text-align: center;
		min-height: auto;
		padding: 2em;
		gap: 0;
	}
	#introSlogan .partA {
		font-size: 1.5em;
		text-align: center;
	}
	.wrapAnchor {
		padding-top: 0;
		margin: -24px -16px;
	}
	#teamSlogan {
		font-size: 2em;
		text-align: left;
		background-position: center;
		min-height: 70vh;
	}
	#teamSlogan .wrapper {
		padding: 1.2em;
		margin: 1em;
		line-height: 1.2;
	}

	#clearContent {
		font-size: 1.4em;
	}

	#digitalContent .reversed {
		font-size: 3.4em;
	}

	.flip-card-front {
		position: relative;
	}
	.flip-card-back {
		display: none;
	}
	#comptencesContainer {
		clip-path: none;
		margin-top: 0;
		padding: 20px;
	}

	#digitalContent {
		padding: 2em;
		font-size: 1.6em;
	}
	.rasterBox {
		padding: 30px 30px 200px !important;
		margin: 40px 0 !important;
		background-size: 200px !important;
		background-position: bottom center !important;
	}
	.rasterBox p {
		max-width: 100%;
	}
	.rasterBox h2 {
		font-size: 1.4em;
	}
	.rasterBox h2 br {
		display: none;
	}

	#mainMenu {
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		z-index: 100001;
		width: calc(100% - 52px);
		margin: 0;
		justify-content: center;
		max-width: var(--menuWidth);
		margin-left: calc(var(--menuWidth) * -1);
		transition: all 0.3s ease-in-out;
		background-color: #fff;
		box-shadow: 0 0 40px rgba(0, 0, 0, 0);
	}

	#mainMenu.expand {
		margin-left: 0;
		box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
	}

	#mainMenu #menu {
		flex-direction: column;
	}

	#mainMenu #nav-logo {
		opacity: 1;
		text-align: center;
		width: auto;
		margin: 0 0 2em;
	}

	#usrMenu {
		background-color: rgba(255, 255, 255, 0.4);
		position: fixed;
		right: 12px;
		top: 10px;
		z-index: 9900;
		padding: 0 4px;
		border-radius: 6px;
	}

	#usrMenu img {
		content: url("/assets/menu_black_24dp.svg");
		display: block;
		width: 32px;
		height: auto;
	}

	header h1::after {
		display: none;
	}
	#comptencesContainer h2 {
		font-size: 2em;
		margin-bottom: 0;
	}
	#comptencesContainer h2::before {
		display: none;
	}
}

@media (min-width: 481px) and (max-width: 961px) {
	#comptencesWrapper {
		grid-template-columns: 1fr 1fr;
	}

	.interested {
		background-size: 50%;
	}
	.interested .wrapper {
		margin-left: 50%;
		padding: 2em 0;
	}
}

@media (min-width: 961px) and (max-width: 1400px) {
}
