:root {
	--header-height: 5vh;
	--footer-height: 0vh;
	--burger-width: 30px;
	/* --footer-height: 10vh; */
	--accent-color1: darkred;
	--accent-color2: rgb(23, 150, 51);
	--accent-color3: rgb(255, 217, 0);
	--background-color1: rgb(65, 91, 146);
	--background-color2: rgb(34, 96, 134);
	--background-focus-color: rgb(176, 194, 209);
	--background-color3: rgb(36, 126, 25);
	--background-color-nav: white;
	--border-color1: rgb(143, 162, 197);
	--border-color2: var(--background-color3);
	--text-color1: white;
	--text-color2: rgb(255, 217, 0);
	--text-color-placeholder: rgba(255, 217, 0, 0.5);
	--text-color-placeholder-focus: rgba(255, 217, 0, 0.9);
	--shadow-color: rgba(0, 0, 0, 0.4);
	--zoom-level: 150%;
	--arrow-Width: 1.5rem;
	--arrow-border-radius: 0.2;
	--p-margin-top: 0.7rem;
}

/* poppins-regular - latin */
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local(''),
		 url('fonts/poppins-v19-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
		 url('fonts/poppins-v19-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* poppins-700 - latin */
  @font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: local(''),
		 url('fonts/poppins-v19-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
		 url('fonts/poppins-v19-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* poppins-600 - latin */
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: local(''),
		 url('/fonts/poppins-v19-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
		 url('/fonts/poppins-v19-latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }

/*#region Arrows for scroll ////////////////////*/

.ArrowContainer {
	position: absolute;
	display: flex;
	flex-direction: column;
	z-index: 999999;

	max-height: 70vh;
	margin-left: 0.1rem;
	margin-right: 0.1rem;
}
.ArrowContainer-Top {
	margin-top: calc(1.3 * var(--header-height));
	top: 0;
}

.ArrowContainer-Bottom {
	bottom: 0;
}
.Arrow {
	text-decoration: none;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0.25rem;
	text-overflow: ellipsis;
	max-height: 20vh;
	width: var(--arrow-Width);
}

.Arrow-Visible {
	display: flex;
}

.Arrow-Down {
	transform: rotate(180deg);
}
.Arrow > * {
	margin: 0.25rem;
}

.Arrow .ArrowContent {
	position: relative;
	width: 100%;
	margin: 0;
	background-color: var(--accent-color3);
	color: var(--background-color1);
	padding: 0.3rem;
	border-radius: 0.3rem;

	transform: translateZ(+1px) rotate(180deg);
	transform-style: preserve-3d;
	z-index: 999999;

	writing-mode: vertical-lr;
	text-align: center;
	justify-content: center;
	font-size: 0.7rem;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.triangle {

	position: relative;
	margin: 0;
	background-color: var(--accent-color3);
	text-align: left;
	z-index: 99998;
	transform-style: preserve-3d;
}
.triangle:before,
.triangle:after {
	content: "";
	position: absolute;
	background-color: inherit;
}
.triangle,
.triangle:before,
.triangle:after {
	margin: 0;
	width: calc(var(--arrow-Width) / 2);
	height: calc(var(--arrow-Width) / 2);
	border-top-right-radius: 30%;
	transform: translateZ(-1px);
}

.triangle {
	transform: rotate(-60deg) skewX(-30deg) scale(1, 0.866);
}
.triangle:before {
	transform: rotate(-135deg) skewX(-45deg) scale(1.414, 0.707)
		translate(0, -50%);
}
.triangle:after {
	transform: rotate(135deg) skewY(-45deg) scale(0.707, 1.414) translate(50%);
}

/*#endregion */

html {

	/* font-size: var(--zoom-level); */
	background-color: var(--background-color1);

	color: var(--text-color1);

	scrollbar-color: #fff var(--background-color1);
}
* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
	overflow-y: hidden;
	font-family: "Poppins", sans-serif;
}

header {

	position: sticky;
	z-index: 1000;
	background: none;

	position: sticky;
	top: 0;
	left: 0;

	min-height: var(--header-height);
	align-items: center;

}
.top-white {
	background-color: #fff;

	z-index: 2000;
	position: absolute;
	top: 0px;
	width: 100vw;
	height: 50px;
}
.skip-nav-link {
	position: absolute;
	z-index: 10000;
	color: white;
	transform: translateY(-120%);
	background: black;
	padding: 0.5rem 1.5rem;
	border-radius: 0 0 0.25rem 0.25rem;
	transition: transform 325ms ease-in-out;
}

.skip-nav-link:focus {
	transform: translateY(0);
}
header svg {

	position: absolute;
	top: 0;
	height: 100px;
	width: 100vw;
	z-index: 10;
	fill: white;
	stroke-width: 1rem;
	opacity: 1;

	transform: scale(-1, 0.6) translate(0, +0.5rem);

}

nav {

	position: relative;
	z-index: 9999;
	width: 90%;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	align-content: left;
	margin-top: 10px;
	width:200px;
	height: 2rem;
	transition: 500ms;
	@font-face {
		font-family: "Poppins";
		src: url('img/fonts/poppins-v19-latin-regular.woff2') format('woff2');
	}
}
.logo:hover{
	margin-top: 0;
	width: 100px;
	content: url("img\\Home.svg");
	height: 2.5rem
	;
}
.inline-logo {
	display: inline-block;
	vertical-align: bottom;
	transform: translateY(-0.15em);
	height: 1.3em;
	position: relative;
	font-family: "Poppins", sans-serif;
	font-style: italic;
	font-weight: 300;
	letter-spacing: -1px;
	fill: currentColor !important;	
}
.inline-logo-container {
  display: inline-block;
  position: relative;
}

.inline-logo-container:before {
  position: absolute;
  bottom: 0;
  left: -0.2em;
  padding: 0 0.2em;
  background-color: #ccc;
  
  display: none;
  content: "ID²\0000a0Consulting";
  color: black;
  opacity: 0;
  transition: all .5s;
  pointer-events: none;
  z-index: 1;
}

.inline-logo-container:hover:before {
  opacity: 1;
  display: block;
}
.svg-themed {
	fill: currentColor !important;
}

.nav-links {
	z-index: 9999;
	/* flex: 1; */
	justify-content: space-around;
	/* width: 30%; */
	display: flex;
	letter-spacing: 3px;
	font-weight: bold;
	text-decoration: none;
}
.nav-links li {
	list-style: none;
}
.nav-links a {
	text-decoration: none;
	color: var(--accent-color2);
	padding: 0 1.5rem;
	overflow: hidden;
	font-size: 1rem;
	transition: 500ms;
}
.nav-links a:hover{
	font-size: 1.3rem;
	color: var(--accent-color1);
}
.burger {
	display: none;
	z-index: 9999;
	cursor: pointer;
}
.burger div {
	z-index: 9999;
	width: var(--burger-width);
	height: 4px;
	margin: 5px;
	background-color: var(--accent-color2);
	border-radius: 2px;
	transition: all 0.3s ease-in;
}

main {
	margin: auto;
	margin-top: var(--header-height);

	padding: 0px 1rem;


	font-size: 1rem;
	scroll-snap-type: y proximity;
	ms-scroll-snap-type: y proximity;
	height: calc(100vh - var(--header-height) - var(--footer-height));
	overflow-y: scroll;
	overflow-x: hidden;
	scrollbar-width: thin !important;
}

main section {
	max-width: 1080px;
	background: var(--background-color1);
	border-radius: 0.5rem;
	padding: 1rem;
	padding-left: 1.25rem;
	margin: auto;
	/* box-shadow: 0px 3px 10px var(--shadow-color); */
	--main-width: auto;
	min-height: calc(100vh - var(--header-height) - var(--footer-height));
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	justify-content: center;
	scroll-snap-align: start;

}
section > div {
  container-type: inline-size;
  width: 100%;
}
.row {
	display: flex;

	justify-content: space-around;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.flex-brick {
	display: flex;
	flex-direction: column;
	align-content: flex-start;
	align-self: flex-end;
	margin-top: 1rem;
	margin-bottom: 0;
}


h1 {
	font-size: 2rem;
	color: white;
	margin: 2rem 0;
}

h2 {
	color: var(--accent-color3);
	margin: 1rem 0;
}
p {
	text-align: justify;
}
li {
	list-style-type: "-";
	margin-left: 0.5rem;
	 padding-left: 0.2rem; 
	/* padding-top: 0.5rem;*/
	text-align: justify;
}
.inline-block {
	display: inline-block;
}

.keywordarea {
	position: relative;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin: 1rem 0 1rem;
	padding: 0;
	border-radius: none;
	box-shadow: none;
	transition: all 1s;
}
.keywordarea * {
	user-select: none;
}
.keyword {
	text-decoration: none;
	color: var(--text-color1);
	border-color: var(--border-color1);
	top: 1rem;
	border-radius: 1rem;
	background-color: none;
	overflow: hidden;
	display: block;
	justify-content: self;
	padding: 0.2rem 0.5rem;
	margin: 0.5rem 0.5rem;
	box-shadow: none;
	border: 0.15rem solid var(--border-color1);
	align-items: center;
	text-align: center;
	align-items: center;
	text-align: center;
	align-content: center;
	justify-content: center;

}
.keywordareasmall{
	display: inline-flex;
	justify-content: center;
	column-gap: 2rem;
	row-gap: 0.2rem;
	flex-wrap: wrap;
}
.keywordsmall {
	
	font-size: smaller;
	text-decoration: none;
	color: var(--text-color1);
	border: 0.1rem solid var(--border-color1);

	border-radius: 0.5rem;
	padding: 0 0.5rem;
	
	white-space: nowrap;
	transition: all 0.1s;
}
.keywordsmall:hover {
	background-color: var(--background-color2);
	scale: 1.1;
	cursor: default;
}
.keyword:hover,
.keyword:focus {
	background-color: var(--background-color2);
	scale: 1.1;
	cursor: default;
}
.keyWContent {
	display: none;
	position: absolute;
	top: 100px;
	margin: 0;
	padding: 0.5rem;
	justify-content: self;
	text-align: justify;
	border-radius: 0 0.5rem 0.5rem 0;
	box-shadow: none;
	border-left: 0.15rem solid var(--border-color1);
	background-color: var(--background-color3);
	opacity: 0;
	margin-bottom: 1.5rem;

}
.keyWContent ul {
  font-size: inherit; /* inherit parent font size */
}

.keyWContent li {
  font-size: inherit; /* ensure list items match */
}
.keyword:hover + .keyWContent,
.keyword:focus + .keyWContent {
	display: block;
	opacity: 1;

}
.keyWContent.expanded {
	display: block;
	position: relative;
	top: 0;
	opacity: 1;
}
.option {
	display: block;
	width: fit-content;
	cursor: pointer;
	padding: 0.2rem 0.5rem;
	margin: 0.5rem 0.5rem;
}
.label {
	display: inline-block;
	text-align: right;
	font-style: italic;
	padding-right: 0.5rem;
}
.expander {
	display: inline-block;
	vertical-align: middle;
	height: 2rem;
	width: 4rem;
	padding: 0;
	border: 0.15rem solid var(--border-color1);
	border-radius: 1rem;
}
.expander:hover {
	background-color: var(--background-focus-color);
}
.switch {
	display: block;
	width: 1.7rem;
	margin-left: 0;
	height: 1.7rem;
	border-radius: 0.85rem;
	background-color: var(--accent-color3);
	transition: all 0.3s;
}
.switch.toogled {
	margin-left: 2rem;
}

.alert {
	z-index: 99999;

	padding: 1rem;
	border-radius: 0.5rem;
	background-color: grey;
	border: 2px solid var(--border-color1);
	transform: translateY(0);
	opacity: 1;
	transition: all 1s; 
}

.alert.fromJS {
	position: absolute;
	display: block;
	margin-top: var(--header-height);
}


.clicked {
	visibility: hidden;
	margin-top: 200px;
	opacity: 0;
	animation: FadeOut 0.5s;
}
.alert::first-line {
	font-weight: bold;
}
.failure {
	background-color: lightcoral;
	color: darkred;
	border-color: darkred;
}
.success {
	background-color: lightgreen;
	color: darkgreen;
	border-color: darkgreen;
}

textarea,
input,
select,
button {
	/* display: block; */
	width: 100%;
	background-color: none;
	padding: 0.2rem 0.5rem;
	margin: 0.2rem 0;
	border: 0.15rem solid var(--border-color1);
	border-radius: 0.4rem;
	color: var(--text-color1);
	font-size: 1rem;
	background-color: var(--background-color1);
	font-family: "Poppins", sans-serif;
	resize: vertical;
	outline: none;
}

textarea:focus,
input:focus,
select:focus {
	/* transform: scale(1.05) ; */
	width: 105%;
	transform: translateX(-2.5%);
	transition: 0.15s ease-in-out;
	/* background-color: var(--background-focus-color); */
	border: 0.15rem solid var(--border-color2);
}
textarea::placeholder,
input::placeholder {
	color: var(--text-color-placeholder);
}

textarea:focus::placeholder,
input:focus::placeholder {
	color: var(--text-color-placeholder-focus);
}
select {
	-webkit-appearance: menulist-button;
	/* opacity: 0.5; */
}

select:invalid {
	color: var(--text-color-placeholder);
}
select:valid {
	color: var(--text-color1);
}
select:invalid option:not(:disabled) {
	color: var(--text-color1);
}
select option:first-child {
	color: var(--text-color-placeholder);
}
/* select option:focus:first-child {
  color: var(--text-color-placeholder-focus);
} */
button:hover,
button:focus {
	background-color: var(--background-color2);
	cursor: pointer;
}


::-webkit-scrollbar {
	width: 15px;
}

::-webkit-scrollbar-track {
	background-color: none;
}
::-webkit-scrollbar-thumb {
	background: white;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--background-color3);
}

.card {
	align-self: center	;
	margin: auto;
	display: block;
	text-decoration: none;
	color: var(--text-color2);
	width: max-content;
	/* max-width: 600px; */
	border-radius: 5px;
	border: 0.05rem solid var(--border-color1);
	/* background-color: lightblue; */
	padding: 1rem;
}
.card a {
	display: block;
	color: var(--text-color2);
	text-decoration: none;
	text-decoration: underline 0.1em rgba(0, 0, 0, 0);
	transition: text-decoration-color 200ms;
}
.card a:hover {
	text-decoration-color: var(--text-color2);
}
@media screen and (max-width: 1230px) {
	body {
		overflow-x: hidden;
	}
	.nav-links {
		z-index: 2;
		position: absolute;
		right: 0px;
		height: calc(100vh - var(--header-height) - var(--footer-height));
		top: var(--header-height);
		background-color: var(--background-color-nav);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-around;
		/* box-shadow: -3px 10px 10px var(--shadow-color); */
		transform: translateX(100%);
		width: 0;
		transition: transform 0.2s ease-in, width 0.2s ease-in;
		opacity: 0.9;
	}
	.nav-links li {
		display: none;
		width: 0;
	}
	.burger {
		/* position: absolute; */
		/* top: 0; */
		/* right: 0; */
		display: block;
		cursor: pointer;
		--translate-ratio: 0.43;
	}

	.cross .line1 {
		transform: rotate(45deg)
			translate(
				0%,
				calc(1 * var(--translate-ratio) * var(--burger-width))
			);
	}
	.cross .line2 {
		opacity: 0;
	}
	.cross .line3 {
		transform: rotate(-45deg)
			translate(
				0%,
				calc(-1 * var(--translate-ratio) * var(--burger-width))
			);
	}
}

.nav-active {
	transform: translateX(25%);
	width: auto;
}
.nav-active li {
	width: auto;
	opacity: 1;
	display: inherit;
}

.current {
	color: red !important;
}

.tiles {
	width: 100%;
	min-height: 30vh;
	margin: auto;

	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: minmax(200px, auto);
	grid-auto-columns: minmax(200px, auto);
}
@media screen and (max-width: 768px) {
	.tiles {
		grid-template-columns: 1fr;
	}
	:root {
		--zoom-level: 100%;
	}
}
.tile {
	display: flex;

	min-width: 200px;
	border-radius: 1rem;
	background-color: none;
	overflow: hidden;

	justify-content: self;
	padding: 0.2rem 0.5rem;
	margin: 0.5rem 0.5rem;
	box-shadow: none;
	border: 0.15rem solid var(--border-color1);
	align-items: center;
	text-align: center;
	align-content: center;
	justify-content: center;
}

.my-picture {
	float: inline-start;
	margin: 0 0 1rem, 0;
	padding-top:  var(--p-margin-top);
	padding-bottom:  -var(--p-margin-top);
	background-color: transparent;
	height: auto;
	max-width: 60%;
	min-width: 300px;

	margin-right: 1rem;
	text-align: center;
	background-image: url(/img/LinkedInPic_R3_2bit_SuperSample_Transprent.png);
	background-repeat: no-repeat;
	
	background-size: contain;
	vertical-align: middle;


}

@container (width < 500px) {
    .my-picture {
        float: none;
        display: block;
        margin: auto;
        max-width: 100%;
    }
}


.my-picture:hover{
	background-color: gray;
}
.pic-captcha{
	padding: 0 0.2rem 0 0.2rem;
	color: transparent;
	font-size:smaller;
}
.pic-captcha:hover{
	color: var(--text-color1)
}

.portrait{
	position:relative;
	object-fit: contain;
    min-width: 300px;
	height: auto;
}
.portrait img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.credit{
    position: absolute;
    bottom: 0px;
    right:0px;	
	background-color: rgba(50, 50, 50, 0.6);
	z-index: 9999;
	width: fit-content;
	padding-left: 0.2rem;
	padding-right: 0.5rem;
	margin-bottom: 0.3rem;
	font-size: smaller;
}
p {
	margin-top: 0.7rem;
}
.pre-footer {
	position: sticky;
	bottom: 0;
}
footer {
	display: none;
	position: relative;
	height: var(--footer-height);
	max-height: var(--footer-height);
	/* position: absolute; */
	min-width: 100px;
	bottom: 0;
	background: darkgoldenrod;
}
.flag-container {
	display: block;
	margin-left: auto;
}
.flag {
	height: 1.3rem;
	overflow: hidden;
	border-radius: 0.2rem;
	margin-right: 1rem;
	border-width: 0;
	border-style: solid;
	transition: 200ms;
	border-color:var(--background-color1);
}
.flag:hover{
	/* border-width: 5px; */
	transform: scale(1.3);
}
.flag.Fr {
	content: url(./img/FrenchFlag.svg);
}
.flag.Eng {
	content: url(./img/UK-union-flag.svg);
}
/* ///// Hidding Google Translate components */


#goog-gt-tt {
	display: none !important;
}
.goog-te-banner-frame {
	display: none !important;
}
.goog-te-menu-value:hover {
	text-decoration: none !important;
}
body {
	top: 0 !important;
}
#google_translate_element2 {
	display: none !important;
}
