/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */
@import url("https://fonts.googleapis.com/css?family=Raleway:900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:900&");
:root {
	--icon-size: 2rem;
	--indicator-spacing: calc(var(--icon-size) / 8);
	--border-radius: calc(var(--icon-size) / 4);
	--nav-item-padding: calc(var(--icon-size) / 2);
	--nav-item-padding-hor: calc(var(--icon-size));
	--nav-item-padding-vert: calc(var(--icon-size) / 2);
	--background-color: #111111;
	--background-color-scroll: #333333;
	--background-color-odd: #111111;
	--background-color-even: #141414;
	--text-left: #ffffff;
	--text-right: #04a2fd;
	--text-left-2: #ffffff;
	--text-right-2: #fd0478;
	--text-pink: #fd0478;
	--text-blue: #04a2fd;
}

html {
	overflow-y: scroll;
}

body {
	color: #ffffff;
	background-color: #111111;
	font-family: "Segoe UI Light", "Open Sans", arial, sans-serif;
	font-size: 16px;
}

h1 {
	font-family: "Roboto", "Segoe UI Light", "Open Sans", arial, sans-serif;
	color: #ffffff;
	font-weight: 600;
	font-size: 3rem;
	line-height: inherit;
}

h2 {
	font-family: "Roboto", "Segoe UI Light", "Open Sans", arial, sans-serif;
	color: #ffffff;
	font-weight: 600;
	font-size: 3rem;
	padding-top: 2rem;
	padding-bottom: 2rem;
	background-image: -webkit-linear-gradient(120deg, var(--text-left) 5055%, var(--text-right) 60%);
	background-image: linear-gradient(120deg, var(--text-left) 50%, var(--text-right) 60%);
	text-shadow: 7px 1px 2px rgba(0, 0, 0, 0.1);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

h3 {
	font-family: "Roboto", "Segoe UI Light", "Open Sans", arial, sans-serif;
	color: #ffffff;
	font-size: 1.4rem;
	background-image: -webkit-linear-gradient(120deg, var(--text-left-2) 5055%, var(--text-right-2) 60%);
	background-image: linear-gradient(120deg, var(--text-left-2) 50%, var(--text-right-2) 60%);
	text-shadow: 7px 1px 2px rgba(0, 0, 0, 0.1);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.logo-area {
	border-bottom: 1px solid rgb(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	-webkit-background-clip: padding-box; /* for Safari */
	background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
}

#mainNavigation.bchange {
	opacity: 1;
	background: #000000;
	transition: 250ms ease-in-out;
	padding-bottom: 10px;
}

#mainNavigation .scroll {
	opacity: 1;
}

#mainNavigation.bchange .logo-area {
	border-bottom: 1px solid rgba(100, 100, 100, 0.3);
	border-bottom: 1px solid rgba(100, 100, 100, 0.3);
	-webkit-background-clip: padding-box; /* for Safari */
	background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
}

/******* icons menu *******/

.navbar-container {
	width: max-content;
	margin: 0 auto;
	margin-top: 2rem;
	padding: 0 calc(var(--nav-item-padding) * 1.5);
}

.list {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.list a {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: var(--nav-item-padding) var(--nav-item-padding-hor) var(--nav-item-padding) var(--nav-item-padding-hor);
}

.list .text {
	font-size: 0.9em;
	opacity: 0;
	pointer-events: none;
	transition: 250ms ease-in-out;
	position: absolute;
	bottom: calc(0.4 * var(--nav-item-padding));
	transform: translateY(50%);
}

.list .icon {
	color: #ffffff;
	position: relative;
	transition: 250ms ease-in-out;
}

.list .icon svg {
	width: var(--icon-size);
	height: var(--icon-size);
	display: block;
}

.list .icon img {
	color: #ffffff;
	width: var(--icon-size);
	height: var(--icon-size);
	display: block;
}

.list .active .text {
	color: #ffffff;
	pointer-events: all;
	opacity: 1;
	transform: translateY(0);
}

.list .active .icon {
	transform: translateY(calc(-20% - var(--nav-item-padding)));
}

.list {
	position: relative;
}

.indicator {
	position: absolute;
	left: calc(var(--position) * (var(--icon-size) + var(--nav-item-padding-hor) * 2));
	transition: 250ms ease-in-out;
}

.indicator::after,
.indicator::before {
	content: "";
	position: absolute;
	border-radius: 100%;
}

.indicator::before {
	background-color: var(--background-color);
	width: calc((var(--icon-size) + var(--indicator-spacing)) * 1.5);
	height: calc((var(--icon-size) + var(--indicator-spacing)) * 1.5);
	top: calc(-1 * var(--icon-size) - var(--indicator-spacing) + 20px);
	left: calc(-1 * var(--indicator-spacing) + 25px);
	opacity: 0.5;
}

.bchange .indicator::before {
	background-color: var(--background-color-scroll);
	width: calc((var(--icon-size) + var(--indicator-spacing)) * 1.5);
	height: calc((var(--icon-size) + var(--indicator-spacing)) * 1.5);
	top: calc(-1 * var(--icon-size) - var(--indicator-spacing) + 20px);
	left: calc(-1 * var(--indicator-spacing) + 25px);
	opacity: 0.5;
}

/*************************/

#mainNavigation a {
	font-family: "Cabin", sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.dropdown-menu {
	background: #03727d;
}

a.dropdown-toggle {
	color: #dfdfdf !important;
}

a.dropdown-item:hover {
	color: #03727d !important;
}

.nav-item a {
	color: #dfdfdf;
}

.nav-item a:hover {
	color: #fff;
}

.nav-item {
	min-width: 12vw;
}

#mainNavigation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 240px;
	z-index: 10;
	/* padding-bottom:250px; */
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.7) 50%,
		rgba(0, 0, 0, 0) 100%
	); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}

#navbarNavDropdown.collapsing .navbar-nav,
#navbarNavDropdown.show .navbar-nav {
	background: #037582;
	padding: 12px;
}

.navbar {
	font-size: 14px;
}

.navbar-expand-md .navbar-nav .nav-link {
	padding-right: 1rem;
	padding-left: 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
	color: #ce1818 !important;
}

.navbar .dropdown-menu {
	font-size: 14px;
}

.navbar .dropdown-menu .dropdown-item.active {
	background-color: #ce1818 !important;
}

.navbar .dropdown-menu .dropdown-item:focus {
	background-color: #e7e7e7 !important;
	color: #5a5a5a !important;
}

.btn {
	background-color: #d09662;
	border: 0px;
}

.btn:hover {
	background-color: #d09662;
	border: 0px;
	opacity: 0.9;
}

.img {
	position: relative;
}

section {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

section.featured {
	position: relative;
}

section.odd {
	background-color: var(--background-color-odd);
}

section.even {
	background-color: var(--background-color-even);
}

section.featured::after {
	content: "";
	position: absolute;
	z-index: 2;
	bottom: -50px;
	left: 50%;
	left: calc(50% - 2.5px);
	width: 5px;
	height: 100px;
	background-image: -webkit-linear-gradient(45deg, #000000 25%, #ae0bee 75%);
	background-image: linear-gradient(45deg, #000000 25%, #ae0bee 75%);
}

/************ START HOME ************/

.video-home {
	left: 0;
	top: 0;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.video-home .full-video {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	-webkit-transform: translateZ(0);
}

.home-header {
	min-width: 100%;
	padding-top: 19rem;
	padding-bottom: 18rem;
	text-align: -moz-center;
	text-align: -webkit-center;
}

.home-header h1 {
	font-size: 4rem;
	line-height: 4rem;
	background-image: -webkit-linear-gradient(120deg, var(--text-left) 5055%, var(--text-right) 60%);
	background-image: linear-gradient(120deg, var(--text-left) 50%, var(--text-right) 60%);
	text-shadow: 7px 1px 2px rgba(0, 0, 0, 0.1);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.card {
	background-color: inherit;
	padding: 30px;
	border: #333333 1px solid;
}

.card img {
	align-self: center;
	padding-bottom: 10px;
}

.item {
	margin-bottom: 30px;
}

.button {
	text-align: center;
	padding: 30px;
}

.button .btnMore {
	background-color: #04a2fd;
	text-decoration: none;
	color: #000000;
	font-weight: 600;
	text-transform: capitalize;
}

.button .btnMore:hover {
	background-color: #5fc1fa;
}

/************ END HOME ************/

/************ START ABOUT ************/

.video-about {
	left: 0;
	top: 0;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.video-about .full-video {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	-webkit-transform: translateZ(0);
}

.hero-about .about-header {
	min-width: 100%;
	padding-top: 23rem;
	padding-bottom: 23rem;
	text-align: -moz-center;
	text-align: -webkit-center;
}

.hero-about .wrappertext {
	position: absolute;
	width: 300px;
	height: 300px;
	top: 530px;
	left: 50%;
	transform: translate(-50%, -50%) translateY(20px) scale(1.5);
	overflow: hidden;
	font-family: "Raleway", sans-serif;
	font-size: 20px;
	color: #ffffff;
	color: ;
}

.hero-about .containertext {
	position: absolute;
	width: 300px;
	height: 300px;
}

[data-typing] {
	position: absolute;
	top: 0;
	/*   border: 1px solid #f55; */
	transform-origin: 0% 0%;
	font-size: 25px;
	margin: 0;
	padding: 0;
	top: 100px;
	line-height: 1;
}

[data-typing="ich"] {
	top: 7px;
	left: 30px;
	font-size: 55px;
	height: 70px;
	line-height: 70px;
	background-image: -webkit-linear-gradient(150deg, var(--text-left) 5055%, var(--text-right) 60%);
	background-image: linear-gradient(150deg, var(--text-left) 50%, var(--text-right) 60%);
	text-shadow: 7px 1px 2px rgba(0, 0, 0, 0.1);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

[data-typing="webdesigner"] {
	top: 25px;
	left: 115px;
	font-size: 17px;
	background-image: -webkit-linear-gradient(150deg, var(--text-left) 5055%, var(--text-right) 60%);
	background-image: linear-gradient(150deg, var(--text-left) 50%, var(--text-right) 60%);
	text-shadow: 7px 1px 2px rgba(0, 0, 0, 0.1);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

[data-typing="entwickler"] {
	top: 41px;
	left: 115px;
	font-size: 21px;
	background-image: -webkit-linear-gradient(150deg, var(--text-left) 5055%, var(--text-right) 60%);
	background-image: linear-gradient(150deg, var(--text-left) 50%, var(--text-right) 60%);
	text-shadow: 7px 1px 2px rgba(0, 0, 0, 0.1);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

[data-typing="faehigkeiten"] {
	top: 74px;
	left: 265px;
	font-size: 36px;
	transform: rotate(90deg);
	background: #fff;
	color: #333;
	padding: 0px 4px;
}

[data-typing="javascript"] {
	top: 74px;
	left: 227px;
	transform: rotate(90deg);
	font-size: 35px;
	background-image: -webkit-linear-gradient(150deg, var(--text-left) 5055%, var(--text-right) 60%);
	background-image: linear-gradient(150deg, var(--text-left) 50%, var(--text-right) 60%);
	text-shadow: 7px 1px 2px rgba(0, 0, 0, 0.1);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

[data-typing="photoshop"] {
	top: 72px;
	right: 110px;
	font-size: 30px;
	background-image: -webkit-linear-gradient(150deg, var(--text-left) 5055%, var(--text-right) 60%);
	background-image: linear-gradient(150deg, var(--text-left) 50%, var(--text-right) 60%);
	text-shadow: 7px 1px 2px rgba(0, 0, 0, 0.1);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

[data-typing="html"] {
	top: 110px;
	right: 110px;
	font-size: 30px;
	background-image: -webkit-linear-gradient(150deg, var(--text-left) 5055%, var(--text-right) 60%);
	background-image: linear-gradient(150deg, var(--text-left) 50%, var(--text-right) 60%);
	text-shadow: 7px 1px 2px rgba(0, 0, 0, 0.1);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

[data-typing="bootstrap"] {
	top: 147px;
	right: 110px;
	font-size: 32px;
	background-image: -webkit-linear-gradient(150deg, var(--text-left) 5055%, var(--text-right) 60%);
	background-image: linear-gradient(150deg, var(--text-left) 50%, var(--text-right) 60%);
	text-shadow: 7px 1px 2px rgba(0, 0, 0, 0.1);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

[data-typing="wordpress"] {
	top: 185px;
	right: 110px;
	font-size: 29px;
	background-image: -webkit-linear-gradient(150deg, var(--text-left) 5055%, var(--text-right) 60%);
	background-image: linear-gradient(150deg, var(--text-left) 50%, var(--text-right) 60%);
	text-shadow: 7px 1px 2px rgba(0, 0, 0, 0.1);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

[data-typing="angular"] {
	top: 215px;
	right: 110px;
	font-size: 32px;
	background-image: -webkit-linear-gradient(150deg, var(--text-left) 5055%, var(--text-right) 60%);
	background-image: linear-gradient(150deg, var(--text-left) 50%, var(--text-right) 60%);
	text-shadow: 7px 1px 2px rgba(0, 0, 0, 0.1);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.aboutheadline h2 {
	padding-bottom: 0;
}

.aboutheadline h4 {
	padding-bottom: 3rem;
}

/* skills circles */
.box {
  width: 150px;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.box .skill svg {
  width: 20rem;
  height: 20rem;
  transform: rotate(278deg);
  transform-origin: center;
}

.box .skill circle {
  stroke-width: 1.5rem;
  fill: none;
  transition: all 0.5s ease;
}

.box .skill circle:nth-child(1) {
  stroke: var(--circle-bg);
  filter: drop-shadow(0 0 0.001rem var(--white));
}

.box .skill .progress {
  stroke: var(--stroke);
  position: relative;
  z-index: 1;
  transition: var(--transition);
  stroke-dasharray: var(--stroke-dasharray);
  stroke-dashoffset: var(--stroke-dasharray);
  animation: progress var(--animation-time) ease-in forwards;
  --webkit-stroke-position: inside;
  stroke-linecap: round;
}

@keyframes progress {
  to {
    stroke-dashoffset: var(--stroke-dashoffset);
  }
}

.box .skill .data-progress {
  position: absolute;
  color: var(--white);
  font-size: 4rem;
  font-weight: bold;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.box strong {
  font-size: 4rem;
  letter-spacing: 0.2rem;
}

/* skills bar */

.skills{
  width: 100%;
  padding: 0 20px;
}

.skill-name{
  font-size: 18px;
  font-weight: 700;
  color: #f1f1f1;
  text-transform: uppercase;
  margin: 20px 0;
}

.skill-bar{
  height: 14px;
  background: var(--text-pink);
  border-radius: 3px;
}

.skill-per{
  height: 14px;
  background:  var(--text-blue);
  border-radius: 3px;
  position: relative;
  animation: fillBars 2.5s 1;
}

.skill-per::before{
  content: attr(per);
  position: absolute;
  padding: 4px 6px;
  background: var(--text-blue);
  border-radius: 4px;
  font-size: 12px;
  top: -35px;
  right: 0;
  transform: translateX(50%);
}

.skill-per::after{
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--text-blue);
  top: -15px;
  right: 0;
  transform: translateX(50%) rotate(45deg);
  border-radius: 2px;
}

@keyframes fillBars{
  from{
    width: 0;
  }
  to{
    width: 100%;
  }
}


/************ END ABOUT ************/

/************ START PORTFOLIO ************/
.hero-portfolio .portfolio-header {
	min-width: 100%;
	padding-top: 18rem;
	padding-bottom: 12rem;
	text-align: -moz-center;
	text-align: -webkit-center;
}

.portfolio-header h1 {
	font-size: 6rem;
	line-height: 6rem;
	background-image: -webkit-linear-gradient(120deg, var(--text-left) 5055%, var(--text-right) 60%);
	background-image: linear-gradient(120deg, var(--text-left) 50%, var(--text-right) 60%);
	text-shadow: 7px 1px 2px rgba(0, 0, 0, 0.1);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.portfolio-header h2 {
	padding-top: 0;
}

.filters ul {
	display: flex;
	justify-content: center;
	list-style: none;
	border-bottom: 2px solid #04a2fd;
	margin: 30px 15px;
}
.filters ul li {
	display: inlnie-block;
	text-align: center;
	margin-right: 12px;
	padding: 0 5px 8px 5px;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	position: relative;
	margin-bottom: -2px;
	transition: 0.3s;
	text-transform: uppercase;
}
.filters ul li:hover {
	color: #ae0bee;
}
.filters ul li.is-checked {
	border-bottom: 2px solid #ae0bee;
}
.filters ul li:last-child {
	margin-right: 0;
}

.gridisotope .grid-item {
	margin-bottom: 30px;
	text-align: center;
	align-items: center;
}

.gridisotope .grid-item .card {
	background-color: inherit;
	padding: 30px;
	border: #333333 1px solid;
}

/************ END PORTFOLIO ************/

.nopadding {
	padding-left: 0px;
	padding-right: 0px;
}

.imgborder {
	border: #5a5a5a 1px solid !important;
}

/************ START FOOTER ************/

footer {
	background: #212529;
	font-size: 13px;
	padding-top: 20px;
	padding-bottom: 10px;
	color: #ffffff;
}

footer a {
	color: #d09662;
	text-decoration: none;
}

footer a:hover {
	color: #ffffff;
	text-decoration: none;
}

.cookie-disclaimer {
	background: #000000;
	color: #fff;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 1;
	position: fixed;
	font-size: 13px;
}

.cookie-disclaimer .container {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

.cookie-disclaimer .cookie-close {
	float: right;
	padding: 10px;
	cursor: pointer;
}

/************ END FOOTER ************/

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
	/* Bump up size of carousel content */
	.carousel-caption p {
		margin-bottom: 1.25rem;
		font-size: 1.25rem;
		line-height: 1.4;
	}

	.featurette-heading {
		font-size: 50px;
	}
}

@media (min-width: 62em) {
	.featurette-heading {
		margin-top: 7rem;
	}
}

@media all and (max-width: 991px) {
	.logo-text {
		display: none;
	}
}

@media all and (max-width: 761px) {
	.subpage-header {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.subpage-title h1 {
		font-size: calc(1rem + 0.9vw);
	}

	.mainpage-header .subpage-title h1 .main-subtitle {
		font-size: 1rem;
	}

	.section-title h1 {
		font-size: calc(1rem + 0.9vw);
		font-weight: 500;
		position: relative;
		display: inline-block;
		margin-bottom: 20px;
	}

	.section-title h1::before {
		content: "";
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: 12px;
		height: 2px;
		width: 150%;
		color: #d09662;
		background: linear-gradient(
			90deg,
			#ce1818 0%,
			rgba(215, 182, 121, 0) 17.57%,
			rgba(215, 182, 121, 0) 84.67%,
			#ce1818 95.32%
		);
	}

	.section-title h2 {
		font-size: calc(1rem + 0.9vw);
		font-weight: 500;
		position: relative;
		display: inline-block;
		margin-bottom: 20px;
	}

	.section-title h2::before {
		content: "";
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: 12px;
		height: 2px;
		width: 150%;
		color: #d09662;
		background: linear-gradient(
			90deg,
			#ce1818 0%,
			rgba(215, 182, 121, 0) 17.57%,
			rgba(215, 182, 121, 0) 84.67%,
			#ce1818 95.32%
		);
	}
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: none;
	}
	.navbar .nav-item:hover .nav-link {
	}
	.navbar .nav-item:hover .dropdown-menu {
		display: block;
	}
	.navbar .nav-item .dropdown-menu {
		margin-top: 0;
	}
}

/* ============ desktop view .end// ============ */

@media screen and (max-width: 600px) {
	.wrappertext {
		transform: translate(-50%, -50%) scale(1);
	}
}
