:root {
	--orange: #FF5F00;
	--orange-light: #FFC7A5;
	--orange-dark : #B14200;
	--pink: #FF00D7;
	--pink-light: #ED9AE0;
	--pink-dark : #7D0069;
	--turqoise: #00FFBF;
	--turqoise-light: #98EAD5;
	--turqoise-dark : #007356;
	--digital-white : #E3E3E3;
	--gradient : linear-gradient(90deg,rgba(0, 255, 191, 1) 0%, rgba(255, 95, 0, 1) 50%, rgba(255, 0, 215, 1) 100%);

	--desktop-column-width : 75%;
	--mobile-column-width : 90%;

	--mode-switch-size: 16px;
	
}

html {
	height: 100%;
	background: linear-gradient(150deg, rgba(39, 14, 0, 1) 0%, rgba(0, 22, 16, 1) 100%);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

body {
	min-height: 100vh;
	margin: 0;
	padding: 0;
	color: var(--digital-white);
	font-family: "Hanken Grotesk", sans-serif;
	font-optical-sizing: auto;
	font-weight: 200;
	font-style: normal;
	background: transparent;
	padding-bottom: env(safe-area-inset-bottom);
	margin-top: 30px;
}

p,h1,h2,h3 {
	font-weight: 200;
	margin: 0px;
}

h1 {
	font-size: 3.7em;
}

h2 {
	font-size: 1.9em;
}

h3 {
	font-size: 1.4em;
	width: 100%;
}

p {
	margin-block-start: 0px;
	font-size: 1.15em;
	line-height: 1.4em;
	margin-top: 1em;
}

@keyframes wobble {
	0%   { transform: rotate(0deg); transform: translateX(3px); }
	3%  { transform: rotate(8deg); transform: translateX(-2px);}
	7%  { transform: rotate(-10deg); }
	11%  { transform: rotate(4deg); }
	15%  { transform: rotate(-4deg); }
	18%  { transform: rotate(2deg); }
	25% { transform: rotate(0deg); }
	100% { transform: rotate(0deg); }
}

form {
    width: 50vw;
    margin: auto;
    margin-top: 100px;
    padding: 40px;
    border: 1px solid var(--turqoise-light);
    border-radius: 10px;
    text-align: center;
    background-repeat: repeat;
    background-image: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' width='80' height='160'>\
      <path d='M0,0 L80,160' stroke='white' opacity='0.08' stroke-width='1' shape-rendering='crispEdges' />\
    </svg>");
}

form p {
	margin-bottom: 20px;
}

form input[type="password"] {
    background: #1c1616;
    border: 1px solid var(--turqoise-light);
    border-radius: 5px;
    color: white;
    font-size: 20px;
    margin-left: 10px;
    padding-left: 10px;
}

input[type="password"]:focus {
	outline: none;
    border: 1px solid var(--digital-white);
    box-shadow: 0 0 13px 0px rgb(152 234 213);
}

form button {
    border: 1px solid var(--turqoise-light);
    border-radius: 5px;
    background: #1c1616;
    color: #ffffff;
    margin-left: 10px;
    cursor: pointer;
}

form button:hover {
    background: var(--turqoise-dark);
    color: var(--turqoise-light);
}

h1 span {
margin-left: 0px;
}

.welcome {
    width: 50vw;
    margin: auto;
    margin-top: 100px;
    padding: 40px;
    border: 1px solid var(--turqoise-light);
    border-radius: 10px;
    text-align: center;
    background-repeat: repeat;
    background-image: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' width='80' height='160'>\
      <path d='M0,0 L80,160' stroke='white' opacity='0.08' stroke-width='1' shape-rendering='crispEdges' />\
    </svg>");
}

.welcome i {
  display: inline-block;
  animation: rock 1s infinite ease-in-out;
  transform-origin: center; /* ensures it rocks around its center */
}

@keyframes rock {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(15deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-15deg); }
  100% { transform: rotate(0deg); }
}

.mode-switch {
    background: #6fd9af;
    border-radius: 100px;
    border: 1px solid #40c186;
    width: calc(var(--mode-switch-size) * 2.3);
    height: calc(var(--mode-switch-size) * 1.45);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    padding: 0px calc(var(--mode-switch-size)/5.5);
    cursor: pointer;
    pointer-events: all;
    z-index: 11;
}

.mode-switch .switch {
    border-radius: 50%;
    padding: calc(var(--mode-switch-size) / 5.3);
    box-shadow: 0px 0px var(--mode-switch-size) #105d3f;
    position: absolute;
    left: 0;
    transform: translateX(0px);
    transition: transform 0.4s;
    width: calc(var(--mode-switch-size) - 1px);
    height: calc(var(--mode-switch-size) - 1px);
    border: 1px solid white;
}

.mode-switch i {
    font-size: var(--mode-switch-size);
}

.locked-icon i {
    margin-bottom: 30px;
    font-size: 35px;
}

.password-inputs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
}

.wobble {
  animation: wobble 3s ease-in-out infinite;
  animation-iteration-count: infinite;
}

.start-game {
	background: var(--turqoise);
    border-radius: 100%;
    width: 30px;
    height: 30px;
    position: relative;
    left: calc(100% - 100px);
    top: -15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.start-game i {
	background: black;
    border-radius: 100%;
    padding: 2px;
}

.header {
	display: flex;
	margin-bottom: 50px;
	width: var(--desktop-column-width);
    margin-right: auto;
    margin-left: auto;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

.header p,h1 {
	margin-bottom: 0px;
	margin-top: 0px;
}

.header .information-container {
	display: flex;
}

.header .details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 10px;
}

.footer {
    position: relative;
    height: 150px;
}

.section-head {
    position: relative;
    height: 1px;
}

.section-head.footer {
	margin-top: 100px;
}

.section-head .divider {
    top: 0px;
}

.divider {
	background: linear-gradient(270deg,rgba(0, 255, 191, 1) 0%, rgba(255, 95, 0, 1) 50%, rgba(255, 0, 215, 1) 100%);
	width: 100%;
    position: absolute;
    height: 1px;
    left: 0;
    top: 100px;
    z-index: -1;
}

.avatar {
	width: 100%;
	height: auto;
	max-width: 140px;
	min-width: 100px;
	margin-right: 15px;
	border-radius: 100%;
	background: whitesmoke;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #00FFBF;
	background: linear-gradient(90deg,rgba(0, 255, 191, 1) 0%, rgba(255, 95, 0, 1) 50%, rgba(255, 0, 215, 1) 100%);
}

.avatar img {
	border-radius: 100%;
	width: 99%;
	height: 99%;
}

.main-column {
	display: flex;
    flex-wrap: wrap;
    gap: 30px;
	width: var(--desktop-column-width);
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 200px;
}

.portfolio-column {
	display: flex;
    flex-wrap: wrap;
    gap: 30px;
	width: var(--desktop-column-width);
    margin-right: auto;
    margin-left: auto;
    padding-top: 80px;
/*    padding-bottom: 25px;*/
    margin-bottom: -24px;
}

.education {
	display: flex;
    gap: 30px;
    width: 100%;
}

.col-1 {
	flex: 0 0 100%;
}

.col-2 {
	flex: 0 0 calc(100% / 2 - 15px);
}

.col-3 {
	flex: 0 0 calc(100% / 3 - 20px);
}


ul.pill {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.pill li {
	border-radius: 50px;
	margin: 5px;
	padding: 0px 10px 0px 10px;
}

.content {
	box-sizing: border-box;
	padding: 25px;
    border: 1px solid var(--digital-white);
    border-radius: 14px;
    overflow: hidden;
}

.flex-row {
	display: flex;
	gap:12px;
}

.flex-row p {
	margin-top: unset;
}

.job-info {
	display: flex;
	gap:12px;
	flex-wrap: wrap;
}

.flex-col {
	display: flex;
	flex-direction: column;
	gap:12px;
}

.rank {
	display: flex;
	align-items: center;
	gap: 6px;
}

.rank-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	max-width: 200px;
}

.checkbox {
    border: 1px solid white;
    border-radius: 2px;
    min-width: 10px;
    height: 10px;
    transform: rotate(45deg);
}

.check::before {
    position: absolute;
    border-radius: 2px;
    top: 1px;
    left: 1px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #ffffff;
}

.column {
	max-width: 75%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 30px;
}

.portfolio-item {
	position: relative;
	background: rgba(0, 0, 0, 0);
}

.portfolio-item img {
	border-radius: 10px;
}

.portfolio-start.portfolio-item {
	padding-bottom: 80px;
	position: relative;
	background: rgba(0, 0, 0, 0);
	background: linear-gradient(0deg,rgba(0, 115, 86, 0.5) 0%, rgba(125, 0, 105, 0.5) 47%, rgba(0, 0, 0, 0.5) 100%)!important;
}

.portfolio-space {
	height: 100px;
	background: #1c0811;
    backdrop-filter: blur(20px);
}

.sub-break {
	padding-top: 50px !important;
}

.video-banner {
    position: relative;
    height: auto;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.video-banner video{
	width: 100%;
	margin-left: -1px;
	margin-top: 40px;
    margin-bottom: 0px;
    position: sticky;
    top: 80px;
    min-width: 750px;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 11;
    background: #1c0811;
    border-bottom: 1px solid #ed9ae0;
    padding-bottom: 10px;
}

.portfolio-start .sticky-header {
    background: #1c0811 !important;
}

.slider.misc-content .slide img,
.slider.misc-content .slide video {
	border-radius: 0px;
	border: none;
}

.slider-gallery {
	margin: 30px 0 30px 0;
}

/*Colour way classes*/

.pink {
	border-color: var(--pink-light);
}

.pink .checkbox {
	border-color: var(--pink);
}

.pink .pill li {
	border: 1px solid var(--pink-dark);
}

.pink h3, .pink i, .pink a {
	color: var(--pink-light);
}

.pink .checkbox::before {
	background: var(--pink);
}

.pink .sticky-header {
	border-color: var(--pink-light);
    background: #4a0f3c;
}

.pink.portfolio-item video,
.pink.portfolio-item img {
    border: 1px solid var(--pink-light);
}

.pink.portfolio-item {
	background: linear-gradient(0deg,rgba(0, 115, 86, 0.5) 0%, rgba(125, 0, 105, 0.5) 47%);
}

.pink.portfolio-item:not(.portfolio-start)::before{
  content: '';
  display: block;
  width: 100%;
  height: 80px;
  background: linear-gradient(0deg, rgb(74 15 60) 0%, rgb(0 115 86 / 0%) 100%);
}

.turqoise {
	border-color: var(--turqoise-light);
}

.turqoise .checkbox {
	border-color: var(--turqoise);
}

.turqoise .pill li {
	border: 1px solid var(--turqoise-dark);
}

.turqoise h3, .turqoise i, .turqoise a {
	color: var(--turqoise-light);
}

.turqoise .checkbox::before {
	background: var(--turqoise);
}

.turqoise .sticky-header {
	border-color: var(--turqoise-light);
	background: linear-gradient(0deg,rgba(177, 66, 0, 0.5) 0%, rgba(0, 115, 86, 0.5) 100%);
    background: #0b4631;
}

.turqoise.portfolio-item {
	background: linear-gradient(0deg,rgba(177, 66, 0, 0.5) 0%, rgba(0, 115, 86, 0.5) 100%);
}

.turqoise.portfolio-item video,
.turqoise.portfolio-item img {
    border: 1px solid var(--turqoise-light);
}

.turqoise.portfolio-item::before {
  content: '';
  display: block;
  width: 100%;
  height: 80px;
  background: linear-gradient(0deg, rgb(11 70 50) 0%, rgb(0 115 86 / 0%) 100%);
}

.orange {
	border-color: var(--orange-light);
}

.orange .checkbox {
	border-color: var(--orange);
}

.orange .pill li {
	border: 1px solid var(--orange-dark);
}

.orange h3, .orange i, .orange a {
	color: var(--orange-light);
}

.orange .checkbox::before {
	background: var(--orange);
}

.orange .sticky-header {
	border-color: var(--orange-light);
    background: #6a2a04;
}

.orange.portfolio-item video,
.orange.portfolio-item img {
    border: 1px solid var(--orange-light);
}

.orange.portfolio-item {
	background: linear-gradient(0deg,rgba(125, 0, 105, 0.5) 0%, rgba(177, 66, 0, 0.5) 100%);
}

.orange.portfolio-item::before {
  content: '';
  display: block;
  width: 100%;
  height: 80px;
  background: linear-gradient(0deg, rgb(107 43 4) 0%, rgb(0 115 86 / 0%) 100%);
}

/* Break points  */
@media only screen and (min-width: 1500px) and (max-width: 30000px) {
	.main-column {
		width: calc(var(--desktop-column-width) - ((100% - 1500px) / 1.5));
	}

	.header {
		width: calc(var(--desktop-column-width) - ((100% - 1500px) / 1.5));
	}

	.overview {
		flex: 0 0 calc(100% / 1.5 - 15px);
	}

	.education {
		width: calc(100% / 3 - 15px);
		flex-direction: column;
	}
}

@media only screen and (max-width: 1300px) {
	.col-3 {
		flex: 0 0 calc(100% / 2 - 15px);
	}
}

@media only screen and (max-width: 750px) {
	.col-2 {
		flex: 0 0 100%;
	}

	.col-3 {
		flex: 0 0 calc(100% / 2 - 15px);
	}

	.education {
		flex-direction: column;
		height: fit-content;
	}
}

@media only screen and (max-width: 700px) {
	.header {
		min-height: 130px;
	}
	.header h1 {
		font-size: 7vw;
	}
}

@media only screen and (max-width: 650px) {
	.col-3 {
		flex: 0 0 100%;
	}

	.main-column, .portfolio-column, .header {
		width: var(--mobile-column-width);
	}
}
