@charset "UTF-8";


/* ---------- Root elements ---------- */

html {
	scroll-behavior: smooth;
}

* {
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}

body {
    opacity: 0%;
    transition: opacity 0.9s;
    transition-delay: 0.2s;
    margin: 0;
    min-width: 360px;
    background-color: #29252a;
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  height: 100%;
  scroll-padding-top: calc(4.5rem - 1px);
}

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

iframe {
  border: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

img {
    user-select: none;
    pointer-events: none;
}

span {
	color: #f8f8f8;
}

::selection {
    background: #fff4;
}

.navbar > .container,
.navbar > .container-fluid {
	display: flex;
	flex-wrap: inherit;
	align-items: center;
}

.container,
.container-fluid {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}

.container-blogPost {
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(var(--bs-gutter-y) * -1);
	margin-right: calc(var(--bs-gutter-x) * -.10);
	margin-left: calc(var(--bs-gutter-x) * -.10);
}

.section {
	padding-top: 4rem;
	padding-bottom: 12rem;
}

.section-heading {
	letter-spacing: 1px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.section-subHeading {
	letter-spacing: 1px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

.feature {
    height: 100vh;
    padding-top: 25vh;
    min-height: 1000px;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    user-select: text;
    pointer-events: none;
}

.featureContent {
	display: flex;
	flex-direction: column;
	float: center;
	align-items: center;
}

.featureTitle {
	margin-top: 2rem;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 100%;
    color: #ffffff;
}

.featureCyberthug {
    height: 30rem;
    padding-top: 25vh;
    min-height: 30rem;
    position: relative;
    background-image: url("background-cyberthug.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    user-select: text;
    pointer-events: none;
}

.featureTitleCyberthug {
	width: 24rem;
	margin-top: 2rem;
	filter: invert();
}

.avatar {
	width: 400px;
	height: 400px;
	position: relative;
	display: flex;
}

.avatar-image {
    width: 100%;
	height: 100%;
	position: absolute;
    padding: 67%;
    margin-bottom: 50px;
    border-radius: 100%;
}

.avatar-image1 {
    animation-name: avatarFadeIn1;
    animation-duration: 1.2s;
    animation-delay: 0.62s;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier();
    animation-fill-mode: forwards;
}

.avatar-image2 {
    animation-name: avatarFadeIn2;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier();
    animation-fill-mode: forwards;
}

.avatar-image3 {
    animation-name: avatarFadeIn3;
    animation-duration: 0.8s;
    animation-delay: 0.55s;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier();
    animation-fill-mode: forwards;
}

@keyframes avatarFadeIn1 {
  0%	{
      padding: 50%;
  }
  100%	{
      padding: 0%;
  }
}

@keyframes avatarFadeIn2 {
  0%	{
      padding: 50%;
  }
  100%	{
      padding: 5%;
  }
}

@keyframes avatarFadeIn3 {
  0%	{
      padding: 50%;
	  opacity: 0%;
  }
  40%	{
	  opacity: 100%;
  }
  100%	{
      padding: 6%;
  }
}

.backgroundFill {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.backgroundFillNoise {
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat;
    background-size: auto;
}


/* ---------- Slideshow ---------- */

.slideshow {
	max-width: 1000px;
	position: relative;
	margin: auto;
}

.slideshow-slides {
	display: none;
	user-select: none;
}

.slideshow-prev, .slideshow-next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -44px;
	padding-top: 24px;
	padding-bottom: 24px;
	padding-left: 12px;
	padding-right: 18px;
	color: white;
	font-weight: bold;
	font-size: 22px;
	transition: all 0.15s ease-out;
	border-radius: 0 50rem 50rem 0;
	user-select: none;
	background-color: #000a;
	opacity: 50%;
}

.slideshow-next {
	right: 0;
	padding-left: 18px;
	padding-right: 12px;
	border-radius: 50rem 0 0 50rem;
}

.slideshow-prev:hover, .slideshow-next:hover {
	opacity: 100%;
}

.slideshow-info {
	display: flex;
	position: absolute;
	width: 100%;
	height: 48px;
	bottom: 6px;
	padding-left: 16px;
	padding-right: 16px;
    background-color: #000a;
	border-radius: 0 0 1rem 1rem;
}

.slideshow-text {
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	line-height: 48px;
	overflow: hidden;
}

.slideshow-counter {
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	margin-left: auto;
	margin-right: 0;
	align: right;
	line-height: 48px;
}


/* ---------- Glass buttons ---------- */

.glassButton {
	position: relative;
	display: flex;
	height: 6rem;
    border-radius: 1.5rem;
    user-select: none;
	margin-bottom: 1rem;
    background-color: #ffffff08;
    transition: all 0.15s ease-out;
}

.glassButtonDisabled {
	position: relative;
	display: flex;
	height: 6rem;
    border-radius: 1.5rem;
    user-select: none;
	margin-bottom: 1rem;
    background-color: #ffffff10;
	opacity: 50%;
}

.glassButtonSchool {
	position: relative;
	display: flex;
	height: 4rem;
    border-radius: 1.5rem;
    user-select: none;
	margin-top: 0.5rem;
	margin-bottom: 1rem;
    background-color: #5d6975;
    transition: all 0.15s ease-out;
}

.glassButtonSchool {
	position: relative;
	display: flex;
	height: 6rem;
    border-radius: 1.5rem;
    user-select: none;
	margin-bottom: 1rem;
    background-color: #4d5761;
    transition: all 0.15s ease-out;
}

.buttonDownload {
	height: 4rem;
	padding: 1rem;
	display: flex;
	background-color: #0003;
	transition: all 0.15s ease-out;
}

.buttonDownload:hover {
	background-color: #0000;
}

.buttonDownloadIntense {
	height: 4rem;
	padding: 1rem;
	display: flex;
	background-color: #0006;
	transition: all 0.15s ease-out;
}

.buttonDownloadIntense:hover {
	background-color: #0000;
}

.glassButton-link {
	display: flex;
	width: 100%;
}

.glassButton:hover {
	background-color: #ffffff20;
}

.glassButtonSchool:hover {
	background-color: #6d7b8a;
}

.glassButton-image {
	padding: 1.5rem;
	filter: invert();
}

.glassButton-text1 {
	font-size: 1.4rem;
    font-weight: 500;
}

.glassButton-text2 {
	font-size: 0.8rem;
    font-weight: 500;
}


/* ---------- Gradient buttons ---------- */

.gradientButton {
	position: relative;
	display: flex;
	height: auto;
    border-radius: 1.5rem;
    user-select: none;
	margin-bottom: 1rem;
	background-image: linear-gradient(to bottom, #ffffff10, #ffffff10);
	box-shadow: 0rem 0.1rem 0.5rem #00000050;
}

.gradientButton-background {
	border-radius: 1.5rem;
	background-image: linear-gradient(to bottom, #ffffff30, #ffffff00);
	opacity: 0%;
	transition: all 0.15s ease-out;
}

.gradientButton-background:hover {
	opacity: 100%;
}


/* ---------- Portfolio buttons ---------- */

.portfolio {
    position: relative;
    border-radius: 1.5rem;
    transform: scale(0.93);
    transition: all 0.15s ease-out;
}

.portfolio-image {
    border-radius: 1.5rem;
    transition: all 0.15s ease-out;
	filter: saturate(0);
}

.portfolio-overlay {
    opacity: 0%;
}

.portfolio:hover > .portfolio-image {
	filter: saturate(1);
}

.portfolio:hover > .portfolio-overlay {
    opacity: 100%;
}





.homeSubSection {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

/* ---------- Color strip ---------- */

.colorStrip {
    height: 6px;
    background-image: linear-gradient(to right, #a751b2, #faab34);
    overflow: hidden;
}

.colorStripWhite {
    height: 3px;
    background-color: #888;
    overflow: hidden;
}



/* ---------- Page banner ---------- */

.pageBanner {
    height: 26em;
    flex-direction: column;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    user-select: none;
    pointer-events: none;
}

.pageBanner-fadeDefault {
    width: 100%;
    height: 100%;
    display: flex;
    background: linear-gradient(to bottom, #30303000, #303030ff);
}

.pageBanner-fadeBlue {
    width: 100%;
    height: 100%;
    display: flex;
    background: linear-gradient(to bottom, #232b42, #3a435b);
}

.pageBanner-fadePhoenixNest {
    width: 100%;
    height: 100%;
    display: flex;
    background: linear-gradient(to bottom, #0008, #3b3947);
}

.pageBanner-fadeSchool {
    width: 100%;
    height: 100%;
    display: flex;
    background: linear-gradient(to bottom, #3d454d00, #3d454dff);
}

.pageBanner-fadePhotos {
    width: 100%;
    height: 100%;
    display: flex;
    background: linear-gradient(to bottom, #3f4b4800, #3f4b48ff);
}

.pageBanner-text {
    font-size: 2.5rem;
	font-weight: 700;
    margin: auto;
}



/* ---------- Social media ---------- */

.socialMediaHome {
    display: flex;
	border-style: solid;
	border-width: 2px;
	border-color: #888;
    border-radius: 16px;
	background-color: #222;
    padding: 2px;
    width: 200px;
    height: 56px;
    overflow: hidden;
	margin-top: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    user-select: none;
}

.socialMediaNavbar {
    display: flex;
	border-style: solid;
	border-width: 2px;
	border-color: #888;
    border-radius: 16px;
    padding: 2px;
    width: 188px;
    height: 48px;
    overflow: hidden;
    margin-left: auto;
    margin-right: 15px;
    user-select: none;
}

.socialMediaHome-link {
    background-color: #ffffff00;
    width: 64px;
    height: 48px;
    transition: all 0.15s ease-out;
}

.socialMediaNavbar-link {
    background-color: #ffffff00;
    width: 60px;
    height: 40px;
    transition: all 0.15s ease-out;
}

.socialMediaHome-link:hover {
    background-color: #ffffff48;
}

.socialMediaNavbar-link:hover {
    background-color: #ffffff48;
}

.socialMediaHome-image {
	filter: invert();
	width: 64px;
	height: 48px;
	padding: 8px;
	display: flex;
    user-select: none;
    pointer-events: auto !important;
    transition: all 0.15s ease-out;
}

.socialMediaLink-image {
	filter: invert();
    padding: 7px;
    width: 60px;
    height: 40px;
    user-select: none;
    pointer-events: auto !important;
    transition: all 0.15s ease-out;
}


/* ---------- Cards ---------- */

.card {
    padding: 1rem;
    border-radius: 1.5rem;
    border: none;
    box-shadow: 0rem 0.1rem 0.5rem #00000050;
    transform: scale(0.95);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.card-subtitle {
    font-size: 1rem;
    font-weight: 500;
}

.card-image {
    background-color: #394048;
    width: 100%;
    border-radius: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.67rem;
}

.card-slideshow {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 0.67rem;
}

.card-video {
    position: relative;
    padding-bottom: 75%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.card-youtube {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 1.5rem;
}

.card-description {
    font-size: 1rem;
    font-weight: 500;
    overflow: hidden;
    height: 15rem;
}

.card-button {
	width: auto;
    display: flex;
    padding: 0.5rem;
}

.card-buttonSub {
    font-size: 1rem;
    font-weight: 700;
	width: auto;
    height: 4rem;
    display: flex;
    border-radius: 1.5rem;
    transition: all 0.15s ease-out;
}

.card-buttonSub-image {
	height: 100%;
	padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.card-buttonSub-text {
	margin-top: auto;
	margin-bottom: auto;
	margin-right: 2rem;
    user-select: none;
}

.card-buttonSub:hover {
    filter: brightness(1.2);
}

.card-buttonDisabled {
	opacity: 50%;
	width: auto;
    display: flex;
    padding: 0.5rem;
}

.card-buttonSubDisabled {
    background-color: #50616D;
    font-size: 1rem;
    font-weight: 700;
	width: auto;
    height: 4rem;
    display: flex;
    border-radius: 1.5rem;
}

.cardBlog {
	display: flex;
	flex-direction: column;
	width: auto;
	height: auto;
	margin-bottom: 1rem;
    border-radius: 1.5rem;
}

.cardBlog-image {
	width: auto;
    border-radius: 1.5rem 1.5rem 0 0;
}

.cardBlog-text {
	width: inherit;
	height: inherit;
    padding: 1rem;
    border-radius: 0 0 1.5rem 1.5rem;
	transition: all 0.15s ease-out;
}

.cardBlog:hover > .cardBlog-text {
	filter: brightness(1.2);
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.blog-subtitle {
    font-size: 1rem;
    font-weight: 500;
}

.blog-divider {
	width: 100%;
	height: 1px;
	margin-top: 2rem;
	margin-bottom: 2rem;
	background-color: #b0b0b0;
}

.blog-divider2 {
	width: 100%;
	height: 1px;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	background-color: #b0b0b0;
}

.blog-heading {
	margin-top: 5rem;
	font-size: 1.8rem;
	letter-spacing: 1px;
    font-weight: 700;
}

.blog-paragraph {
	font-size: 1rem;
    font-weight: 500;
	margin-top: 1rem;
}

.blog-image {
	border-radius: 1rem;
	width: 100%;
	margin-top: 1.5rem;
}


/* ---------- Extra ---------- */


.animCyberthugB {
  display: flex;
  padding: 2px;
  width: 100% !important;
  height: 100% !important;
}


.animCyberthugB {
  animation: animCyberthugB-animation 4s infinite steps(48) forwards;
}


@keyframes animCyberthugB-animation {
  to {
    background-position: -14400px 0px;
  }
}

.column4 {
	transform: scale(0.95);
}

.column4-block {
	background-color: #222a;
	transition: all 0.15s ease-out;
}

.column4:hover > .column4-block {
	background-color: #444a;
}

.shadow-small {
	box-shadow: 0rem 0.1rem 0.3rem #00000050;
}

.border-medium {
	border-radius: 1.5rem;
}


.slideshow-image {
	border-radius: 1rem;
}

.slideshow-image2 {
	border-radius: 1rem;
	box-shadow: 0rem 0.1rem 0.3rem #00000050;
}





















































/* ----- New ----- */

.divider {
	width: 100%;
	height: 2px;
	background-color: #fff3;
}

.disabled {
	opacity: 50%;
	pointer-events: none;
	user-select: none;
}










/* ----- Navbar ----- */

.navbar {
    display: flex;
    flex-direction: column;
    height: auto;
}

.navbarLogo {
	width: 360px;
	height: 80px;
	position: relative;
	transition: all 0.15s ease-out;
}

.navbarLogo-text {
	color: #fff;
	padding: 25px;
    font-size: 32px;
    font-weight: 700;
	line-height: 0.85;
    border-radius: 0.75rem;
    display: flex;
    width: 100%;
    height: 80px;
    justify-content: left;
    position: absolute;
    transition: all 0.15s ease-out;
}

.navbarLogo-image {
    position: absolute;
	filter: saturate(0) opacity(0.5);
	transition: all 0.15s ease-out;
}

.navbarLogo:hover > .navbarLogo-image {
	filter: saturate(1) opacity(1);
}

.navbarLinks {
    display: flex;
    width: auto;
	height: 48px;
}

.navbarLinks-other {
	display: flex;
	padding: 12px;
    border-radius: 13px;
	width: 48px;
    height: 100%;
	overflow: hidden;
	opacity: 50%;
    background-color: #ffffff00;
	transition: all 0.15s ease-out;
}

.navbarLinks-other:hover {
	opacity: 100%;
    background-color: #ffffff48;
}

.navbarLinks-active {
	display: flex;
	padding: 12px;
    border-radius: 6px;
	width: 48px;
    height: 100%;
    overflow: hidden;
	transition: all 0.15s ease-out;
}

.navbarLinks-image {
	filter: invert();
}

.navbarLinks-text {
	font-weight: 500;
	margin-left: 0.5rem;
	color: #fff;
	opacity: 100%;
	overflow: hidden;
	transition: all 0.15s ease-out;
}

.navbarLinks-other {
	display: flex;
	padding: 12px;
    border-radius: 13px;
	width: 48px;
    height: 100%;
	overflow: hidden;
	opacity: 50%;
    background-color: #ffffff00;
	transition: all 0.15s ease-out;
}

.navbarLinks-other:hover {
	opacity: 100%;
    background-color: #ffffff48;
}

.navbarLinksDivider {
    width: 4px;
    height: 4px;
	border-radius: 4px;
	margin-top: 22px;
	margin-bottom: 22px;
	margin-left: 0.25rem;
	margin-right: 0.25rem;
    background-color: #fff5;
}

.navbarMenu {
	padding: 0.5rem;
	display: flex;
	margin-left: auto;
	margin-right: 15px;
    border-radius: 13px;
	width: 48px;
    height: 48px;
	opacity: 50%;
    background-color: #ffffff00;
	cursor: pointer;
	transition: all 0.15s ease-out;
}

.navbarMenu:hover {
	opacity: 100%;
    background-color: #ffffff48;
}

#navbarMenuItems {
	display: none;
}





.textLink {
	padding: 0.5rem;
	border-radius: 0.67rem;
	transition: all 0.15s ease-out;
	width: auto;
	height: auto;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	display: inline-flex;
	flex-direction: row;
}

.textLink:hover {
	background-color: #a3b3ff30;
}

.textLink-icon {
	width: 1.5rem;
	height: 1.5rem;
	display: flex;
	float: center;
	margin-top: auto;
	margin-bottom: auto;
	filter: invert(76%) sepia(47%) saturate(4062%) hue-rotate(197deg) brightness(108%) contrast(102%);
}

.textLink-text {
	color: #a3b3ff;
	line-height: 1.6rem;
	font-weight: 700;
	width: auto;
	display: flex;
	flex-direction: column;
	height: auto;
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}

.objectLink {
	padding: 0.5rem;
	border-radius: 0.67rem;
	transition: all 0.15s ease-out;
}

.objectLink:hover {
	background-color: #ffffff30;
}

.objectLink-icon {
	width: 3rem;
	height: 3rem;
	display: flex;
	float: center;
	margin-top: auto;
	margin-bottom: auto;
}

.objectLink-text {
	display: flex;
	flex-direction: column;
	height: auto;
	margin-left: 1rem;
}

.objectLink-text2 {
	display: flex;
	flex-direction: column;
	height: auto;
	margin-left: 1rem;
}

.footer {
    background-color: #363636;
    width: auto;
    height: 35px;
    text-align: center;
}

.footer-text {
    font-weight: 400;
    font-size: 0.85rem;
    color: #ccc;
}

.indexCaret {
	width: 3rem;
	height: 3rem;
	border-radius: 5rem;
	margin-top: 1rem;
	padding: 0.5rem;
	pointer-events: all;
	background-color: #ffffff00;
	transition: all 0.15s;
}

.indexCaret:hover {
	padding: 0.7rem;
    background-color: #ffffff48;
}
