:root {
	--color-primary: #1d2935;
	--color-secondary: #2ea9d9;
	--color-tertiary: #ff8cff;
	--color-grey: #ccc;
	--color-text: #fff;
}


/*
#1d2935
#ff8cff
#49ddd7
*/

body {
	background: #1d2935;
	font-weight: 300;
	color: var(--color-text);
	font-family: "Roboto", sans-serif;
	font-weight: 300;
	font-style: normal;
	position: relative;
}

body:before {
	content: '';
    background-image: url(https://static.vecteezy.com/system/resources/previews/005/201/611/non_2x/black-and-white-geometric-plexus-line-pattern-design-with-transparent-triangles-abstract-polygonal-futuristic-concept-vector.jpg);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    mix-blend-mode: color-burn;
}


h1, .h1 {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 100px;
}

h2, .h2 {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-style: normal;
}

h3, .h3 {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: clamp(1.375rem, 1.375rem + 0vw, 1.375rem);
}

h4, .h4 {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
    font-weight: 500;
}

ul {
	margin-left: 0;
	padding-left: 18px;
}

ul li {
	margin-bottom: 10px;
}

a {
	color: inherit;
	text-decoration: none;
}

svg path {
	stroke: currentColor;
}

.btn {
	border-radius: 0;
    padding: 10px 30px;
    border: 0;
    font-size: 14px;
}

.btn-primary {
	background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-secondary {
	background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.btn-tertiary {
	background-color: var(--color-tertiary);
    border-color: var(--color-tertiary);
}

.tagline {
	text-transform: uppercase;
	color: var(--color-tertiary);
	letter-spacing: 1.4px;
}

.color-scheme-light {
	color: #fff;
}
.color-secondary {
	color: var(--color-secondary);	
}
.color-grey {
	color: var(--color-grey);	
}

.imageHolder {
	overflow: hidden;
}
.imageHolder.bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
    z-index: -1;
}
.imageHolder.overlay:before {
	content: '';
    background-color: #1d2935;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
.imageHolder img {
	width: 100%;
	height: 100%;
	object-position: center center;
	object-fit: cover;
}

img {
	max-width: 100%;
}


header {
    top: 0;
    width: 100%;
    z-index: 9;
    position: fixed;
    padding: 30px 0;
    transition: 0.8s;
}
.logo {
	font-family: "Bebas Neue", sans-serif;
	line-height: 1;
}
.logo .k {
	transition: 0.5s;
}
.logo .other {
	transition: 0.5s;
	opacity: 1;
}

header.sticky {
	padding: 10px 0;
}
header.sticky .logo .k {
	font-size: 35px;
    background-color: var(--color-tertiary);
    padding: 4px 20px;
}
header.sticky .logo .other {
	opacity: 0;
}


#hero {
	height: 100vh; 
	z-index: 0;
	padding-bottom: 15vh;
}
#hero:before {
	content: '';
	background: linear-gradient(90deg, var(--color-primary) 51%, rgba(0,0,0,0) 100%);
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/*
#hero:after {
	content: '';
	background: linear-gradient(-60deg, var(--color-secondary) 0%, var(--color-tertiary) 100%);
	height: 3px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
*/

#hero .imageHolder {
	width: 50%;
    right: 0;
    left: auto;
    z-index: -2;
}
#hero .imageHolder:before {
	opacity: 0.5;
	mix-blend-mode: multiply;
}
#hero .tagline {
	color: #fff;;
}
#hero h1 {
	line-height: 1;
}
#hero h1 > span:last-child {
	background-color: red;
	background-image: linear-gradient(-60deg, var(--color-secondary) 0%, var(--color-tertiary) 100%);
	background-size: 100%;
	background-repeat: repeat;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent; 
	-moz-background-clip: text;
	-moz-text-fill-color: transparent;
}

section {
	padding-top: 100px;
    padding-bottom: 100px;
	position: relative;
	overflow: hidden;	
}

.container {
	width: 90%;	
	z-index: 1;
}


.item .linked svg {
	margin-left: 5px;
	transition: 0.5s;
}
.item .imageHolder img {
	transform: scale(1);
    transition: 0.5s;
}
.item:hover .linked svg {
	margin-left: 10px;
}
.item:hover .imageHolder img {
	transform: scale(1.03);	
}


.dm-bar-container {   
    position: absolute;
    top: 0;
    height: 100%;
    left: 29.1%;
}
.dm-progress-bar {
    background: linear-gradient(0deg, rgba(255,167,76,1) 0%, rgba(177,108,234,1) 5%, rgba(228,99,149,1) 35%, rgba(254,118,95,1) 70%, rgba(255,167,76,1) 100%);
    height: 0%;  
    width: 2px;
    position: absolute;
    left: 0;
    top: 0;
}
.dm-timeline-bar {
	background-color: #333f4a;
	width: 2px;
	min-height: 100%;  
}    
.point {
	background-color: var(--color-secondary);
    width: 20px;
    display: inline-block;
    aspect-ratio: 1;
    border-radius: 100%;
    position: relative;
    z-index: 2;
}

@media screen and (max-width:1024px) {
  
    .dm-bar-container {  
	    left: 33.5%; 
	}

}

@media screen and (max-width:767px) {


	h1, .h1 {
		font-size: 80px;
	}
	
/*
	section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
*/
	
	.container {
		width: 100%;
	}
	
	header > .container > .row > .col-12,
	section > .container > .row > .col-12,
	footer > .container > .row > .col-12 {
		padding-left: 30px;
		padding-right: 30px;
	} 
	
	
	#hero:before {
		background: linear-gradient(90deg, var(--color-primary) 40%, rgba(0,0,0,0) 100%);
	}
	#hero .imageHolder {
	    width: 100%;
	    right: -20%;
	}
	#hero .imageHolder:before {
	    opacity: 0.8;
	}
	
	.skills {
		columns: 1;
	}
	
}