:root {
	--default-border-radius: 32px;
	--accent-color: #6a7aff;
	--accent-color-hover: #4858dd;
	--color-for-negative: #f60000;
}

@font-face {
  font-family: 'OpenSans-Regular';
  src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
  /*font-weight: normal;*/
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans-Bold';
  src: url('../fonts/OpenSans-Bold.ttf') format('truetype');
  /*font-weight: 800;*/
  font-style: bold;
}


html,
body {
	color: white;
	margin: 0;
	padding: 0;
	height: 100vh;
	z-index: 0;
	font-family: 'OpenSans-Regular', sans-serif;
	background: #100028;
	-webkit-font-smoothing: antialiased;
	font-smooth: always;
	scroll-behavior: unset;
}


h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #eeeeee;
	font-weight: 400;
	font-family: 'OpenSans-Regular', sans-serif;
}

h1 {
	font-size: 64px;
	font-weight: bolder;
}

h2 {
	font-size: 36px;
	font-weight: bolder;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 14px;
	color: black;
	font-weight: 400;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
}

nav {
	display: block;
}

a {
	font-size: 14px;
	color: black;
	font-weight: 400;
	transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

a:hover {
	text-decoration: underline;
	text-decoration-style: dotted;
	outline: none;
	color: #333;
}

a:focus {
	text-decoration-style: border 2px dotted;
}



button:disabled {
	cursor: not-allowed;
	background: #00000022;
	color: #777;
	border: 2px solid #33333333;
}


button:hover:disabled {
	background: #00000022;
	color: #777;
	border: 2px solid #33333333;
}


.accentuate {
	color: #6a7aff;
}

a.blue {
	font-size: 14px;
	color: #6a7aff;
	font-weight: 400;
	transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

a.blue:hover {
	text-decoration: underline;
	text-decoration-style: dotted;
	outline: none;
	color: #6a7aff;
}



ul,
ol {
	padding: 0;
	margin: 0;
}



.hidden {
	visibility: hidden;
}


.visible {
	visibility: visible;
}


.fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.fixed-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  z-index: 0;
  background-attachment: fixed;
  transition: background-image 0.2s ease-out;
}

.fixed-bg-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
}

.relative-bg {
  position: relative;
  top: auto;
  left: auto;
  width: 100vw;
  height: 100vh;
  background-attachment: scroll;
}



.hero-item-title {
	display: block;
	font-size: 32px;
	font-weight: 600;
	color: white;
	width: 100%;
	text-shadow: 2px 0 12px #00000044;
	margin-bottom: 12px;
}

@media(max-width: 1024px) {
	.hero-item-title {
		font-size: 18px;
	}
}

@media(max-width: 760px) {
	.hero-item-title {
		font-size: 18px;
	}
}






.hero-item-subtext {
	display: block;
	font-size: 20px;
	font-weight: 400;
	text-shadow: 2px 0 6px #00000044;
	color: #aaa;
	width: 100%;
	margin: 0;
}

@media(max-width: 1024px) {
	.hero-item-subtext {
		font-size: 13px;
	}
}

@media(max-width: 760px) {
	.hero-item-subtext {
		font-size: 13px;
	}
}












.form {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	width: 50%;
	height: 100%;
	overflow: hidden;
	padding: 4px;
}

@media(max-width: 720px) {
	.form {
		width: 100%;
	}
}



.form-submit-btn {
	width: 100%;
	padding: 16px;
	display: inline-block;
	justify-content: center;
	color:white;
	position: relative;
	background: var(--accent-color);
	border-radius: 16px;
	text-align: center;
	transition: all 0.3s;
}


.form-submit-btn:hover {
	background: var(--accent-color-hover);
	text-decoration: none;
	color: white;
}







.form-sect {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 0;
}

@media(max-width: 760px) {
	.form-sect {
		grid-template-columns: repeat(1, 1fr);
	}
}



.form-item {
	display: flex;
	min-width: 60px;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 24px;
}

@media(max-width: 1024px) {
	.form-item {
		margin-bottom: 16px;
	}
}

@media(max-width: 760px) {
	.form-item {
		margin-bottom: 8px;
	}
}



.form-item .title {
	font-size: 16px;
	font-weight: 400;
	margin: 0;
}









.float-group {
    position: relative;
}

.float-group input, .float-group textarea, .float-group select {
    width: 100%;
    min-width: 250px;
    padding: 1rem 0.85rem 0.5rem 0.85rem;
    font-size: 1rem;
    border: 1px solid #c0c6d0;
    border-radius: 16px;
    background: white;
    outline: none;
    transition: border 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    color: #0f172a;
    font-weight: 400;
}

.float-group select {
    width: 100%;
    padding: 0.5rem 0.85rem 0.5rem 0.85rem;
    font-size: 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    background: white;
    outline: none;
    transition: border 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    color: #0f172a;
    font-weight: 400;
}

.float-group input:focus, .float-group textarea:focus, .float-group select:focus {
    border-color: #3b82f6;
}

/* floating label style */
.float-group label {
    position: absolute;
    left: 0.85rem;
    top: 0.9rem;
    font-size: 1rem;
    color: #6c7a91;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    background: transparent;
    padding: 0 0.2rem;
    font-weight: 450;
}

/* label ascends when input focused OR has value (non-empty) */
.float-group.float-active label,
.float-group input:focus ~ label,
.float-group input:not(:placeholder-shown) ~ label {
    top: 0.2rem;
    font-size: 0.7rem;
    background: white;
    color: #3b82f6;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* make placeholder transparent to rely on label only (clean look) */
.float-group input::placeholder {
    color: transparent;
}





.error-content {
	display: flex;
	flex-direction: row;
	gap: 8px;
	flex-wrap: nowrap;
	width: auto;
	align-items: center;
	padding-left: 8px;
}


.text-error {
	color: var(--color-for-negative);
}





.input-holder {
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: var(--default-border-radius);
	background: transparent;
	color: #000;
	padding: 8px;
	transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.input-holder:focus {
	color: #000;
	border: 1px solid var(--accent-color);
}



input {
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: var(--default-border-radius);
	background: transparent;
	color: #000;
	padding: 8px;
	transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

input:placeholder {
	color: #adadad;
}

input:focus {
	color: #000;
	border: 1px solid var(--accent-color);
}


input .no-border {
	border: none;
	border-radius: var(--default-border-radius);
	background: transparent;
	color: #000;
	padding: 8px;
	transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

input .no-border:focus {
	color: #000;
	border: none;
}



select {
	border: 1px solid rgba(0, 0, 0, 0.2);
	background: transparent;
	color: #000;
	height: 50px;
	border-radius: var(--default-border-radius);
	padding: 10px;
	transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

select:hover {
	border-color: var(--accent-color);
	color: #000;
}



select.light {
	color: #fff;
}

select.light:hover {
	border-color: var(--accent-color);
	color: #fff;
}

select.light:focus {
	color: #fff;
}



textarea {
	height: 128px;
	width: 100%;
	border-radius: var(--default-border-radius);
	padding: 12px 10px 12px 10px;
	border: 2px solid rgba(0, 0, 0, 0.2);
	background: transparent;
	color: #adadad;
	transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

textarea:placeholder {
	color: #adadad;
}

textarea:focus {
	border-color: var(--accent-color);
	color: #000;
}













.cta-info {
  padding: 3rem;
  margin: 1rem 0;
}




.what-we-offer-cont {
	display: flex;
	flex-direction: row;
	align-content: stretch;
	justify-content: space-between;
	width: 100%;
	flex-wrap: wrap;
}


.what-we-offer-item {
	display: flex;
	flex-direction: column;
	justify-content: left;
	align-content: stretch;
	align-items: flex-start;
	gap: 8px;
	flex-wrap: wrap;
	width: 300px;
	height: 450px;
	padding: 16px;
}

.what-we-offer-item .icon {
	font-size: 64px;
	display: inline-block;
	color: var(--accent-color);
}

.what-we-offer-item .title {
	font-weight: 600;
	display: block;
	padding-bottom: 32px;
	font-size: 24px;
	color: #000;
}

.what-we-offer-item .subtitle {
	font-weight: 400;
	color: #777;
	display: block;
	font-size: 20px;
}


/* 🟢🟢🟢 BEGIN Spacing and Layout */
/* ************ */
.h-sep-64 {
	width: 64px;
}

.h-sep-32 {
	width: 32px;
}

.h-sep-24 {
	width: 24px;
}

.h-sep-16 {
	width: 16px;
}

.h-sep-8 {
	width: 8px;
}


.v-sep-64 {
	height: 64px;
}

.v-sep-32 {
	height: 32px;
}

.v-sep-24 {
	height: 24px;
}

.v-sep-16 {
	height: 16px;
}

.v-sep-8 {
	height: 8px;
}



.margin-empty-large {
	margin: 2px 0 2px 0;
}

.margin-bottom-solid {
	border: 1px solid rgba(64, 64, 64, 0.2);
	width: 100%;
	height: 1px;
	margin: 32px 0 8px 0;
}

.d-flex {
	display: flex;
	align-items: center;
}


.gap-1 {
	gap: 10px;
}

.gap-2 {
	gap: 20px;
}

.gap-4 {
	gap: 40px;
}

.gap-5 {
	gap: 60px;
}

.gap-6 {
	gap: 80px;
}


.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

.spad-l-s {   /* spad left, small */
	padding-left: 2rem;
}


.no_list_style {
	 list-style: none;
}


.media-sect {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	gap: 16px;
}

.media-heading {
	font-weight: 600;
}


.media-sect-video {
	width: 320px;
	height: 260px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--default-border-radius);
	overflow: hidden;
	display: flex;
	object-fit: cover;
	transition: scale 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}



/*---------------------
	Global Animations
-----------------------*/

.animate {
		opacity: 0;
}
.animate2 {
		opacity: 0;
		transform: translateY(40px);
		transition: opacity 1s, transform 1s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.animate3 {
		opacity: 0;
		transform: translateY(100px);
		transition: opacity 1s, transform 1s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.animate4 {
		opacity: 0;
		transition: opacity 1s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.in-view {
		opacity: 1;
}

.back-in-down{
		animation: backInDown 1s;
}
.slide-in-down{
		animation: slideInDown 1s;
}
.slide-in-up{
		animation: slideInUp 1s;
}

.fade-in {
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .6s ease, transform .6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.fade-in.show {
	opacity: 1;
	transform: none;
}

.blur-out{
		animation: blurOut 1s;
}



/*---------------------
	Global Button Styles
-----------------------*/
.hero-download-btn {
	display: inline-block;
	width: auto;
	justify-content: center;
	font-size: 16px;
	font-weight: 600;
	padding: 14px 32px 12px;
	color:white;
	position: relative;
	background: var(--accent-color);
	border-radius: var(--default-border-radius);
	justify-content: center;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.hero-download-btn.black {
	background: black;
	color: white;
}


@media(max-width: 1024px) {
	.hero-download-btn {
		padding: 10px 19px 9px;
	}
}

@media(max-width: 760px) {
	.hero-download-btn {
		padding: 8px 16px 7px;
		border-radius: var(--default-border-radius);
		font-size: 14px;
	}
}



.hero-download-btn:hover {
	background: #4858dd;
	text-decoration: none;
	color: white;
}


.play-btn {
	display: inline-block;
	color: #ffffff;
	font-size: 20px;
	height: 60px;
	width: 60px;
	line-height: 50px;
	text-align: center;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	background: rgba(0, 128, 255, 0.6);
	justify-content: center;
	align-content: center;
	transition: all .5s;
}

.play-btn:hover {
	backdrop-filter: blur(8px);
	box-shadow: 0 30px 90px rgba(0, 0, 255, 0.5);
	border: 2px solid rgba(0, 45, 255, 1.0);
	transition: all .5s;
}


.primary-btn {
	display: inline-block;
	width: auto;
	justify-content: center;
	font-size: 16px;
	font-weight: 400;
	padding: 12px 30px 10px;
	color:white;
	position: relative;
	background: var(--accent-color);
	border-radius: var(--default-border-radius);
	text-align: center;
	transition: all 0.3s;
}

.primary-btn.outlined {
	background: transparent;
	color: #4858dd;
	font-weight: 500;
	border: 1px solid #4858dd;
}

/*.primary-btn.outlined {
	background: transparent;
	color: #888;
	font-weight: 500;
	border: 1px solid #888;
}*/

.primary-btn.outlined:hover {
	background: #4858dd;
	border: 1px solid #4858dd;
	text-decoration: none;
	color: white;
}

/*.primary-btn.outlined:hover {
	background: #4858dd44;
	border: 1px solid #4858dd;
	text-decoration: none;
	color: #4858dd;
}*/

/*.primary-btn.outlined:hover {
	background: black;
	border: 1px solid black;
	text-decoration: none;
	color: white;
}
*/



.base-btn {
	color: #fff;
	background: var(--accent-color);
	text-wrap-mode: nowrap;
	font-size: 14px;
	text-align: center;
	padding: 4px 8px 4px 8px;
	align-content: center;
	align-items: center;
	display: block;
	border-radius: var(--default-border-radius);
	margin: 2px;
	border: 2px transparent;
	transition: all 0.3s;
}

.base-btn:hover {
	background: var(--accent-color);
	color: white;
}






.primary-btn-slim {
	display: inline-block;
	width: auto;
	justify-content: center;
	font-size: 16px;
	font-weight: 600;
	padding: 13px 31px 11px;
	color:white;
	position: relative;
	background: var(--accent-color);
	border-radius: var(--default-border-radius);
	text-align: center;
	box-shadow: 0 0 6px #00000022;
	backdrop-filter: blur(8px);
	transition: all 0.3s;
}

.primary-btn-black {
	display: inline-block;
	width: auto;
	justify-content: center;
	font-size: 16px;
	font-weight: 600;
	padding: 18px 36px 16px;
	color:white;
	position: relative;
	background: #000;
	border-radius: var(--default-border-radius);
	text-align: center;
	box-shadow: 0 0 6px #00000022;
	backdrop-filter: blur(8px);
	transition: all 0.3s;
}


.primary-btn:hover, .primary-btn-black:hover, .primary-btn-slim:hover {
	background: #4858dd;
	text-decoration: none;
	color: white;
}




.v-flex {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}

.h-flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.h-flex.nowrap {
	flex-wrap: nowrap;
}




.h-flex.leadership-testimonial-sect, .h-flex.leadership-testimonial-sect-reverse {
	flex-wrap: nowrap;
} 

@media (max-width: 760px) {
	.h-flex.leadership-testimonial-sect, .h-flex.leadership-testimonial-sect-reverse {
		flex-wrap: wrap;
	}
	

	.h-flex.leadership-testimonial-sect {
		flex-direction: column;
	}
	.h-flex.leadership-testimonial-sect-reverse {
		flex-direction: column-reverse;
	}
}



.h-slides-cont {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

.h-slides-sect {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(400px, 1fr);
	gap: 8px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	width: 100%;
}



.h-slides-sect::-webkit-scrollbar {
  height: 3px;
  background: #222;
}

.h-slides-sect::-webkit-scrollbar-thumb {
  background: #00bae2;
  border-radius: 20px;
}

.h-slides-sect::-webkit-scrollbar-thumb:hover {
  background: #00cde7;
}






.snap-item {
	scroll-snap-align: start;
	min-width: 300px;
	min-height: 400px;
	max-width: auto;
	max-height: 400px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	overflow: hidden;
	display: block;
	object-fit: cover;
	transition: all 0.3s ease;
}

@media (max-width: 760px) {
	.h-slides-sect {
		grid-auto-columns: minmax(250px, 1fr);
	}

	.snap-item {
		min-width: 250px;
		width: 250px;
		min-height: 100%;
		max-height: 100%;
		height: 100%;
	}
}


.h-slides-cont::-webkit-scrollbar {
	height: 8px;
	background: transparent;
}

.h-slides-cont::-webkit-scrollbar-thumb {
	background: #6a7aff;
	border-radius: 20px;
}

.h-slides-cont::-webkit-scrollbar-thumb:hover {
	background: #9dadff;
}




.flex-center {
	justify-content: center;
	align-content: center;
}


.flex-start {
	justify-content: flex-start;
	align-content: flex-start;
	justify-self: flex-start;
	align-self: flex-start;
}


.flex-v-center {
	align-content: center;
}
.flex-v-start {
	align-content: flex-start;
}
.flex-v-end {
	align-content: flex-end;
}




.height-60 {
	height: 60%;
}

.width-60 {
	width: 60%;
}

.height-80 {
	height: 80%;
}

.width-80 {
	width: 80%;
}

.height-100 {
	height: 100%;
}

.width-100 {
	width: 100%;
}

.height-100vh {
	height: 100vh;
}

.width-100vw {
	width: 100vw;
}

.no-box-shadow {
	box-shadow: 0 0 0 transparent;
}

.font-weight-lighter {
	font-weight: lighter;
}

.font-weight-bold {
	font-weight: bold;
}

.font-weight-bolder {
	font-weight: bolder;
}

.position-absolute {
	position: absolute;
}



.shady-cover {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-direction: column;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 1.0));
	overflow: hidden;
}

.shady-cover.top-down {
	background: linear-gradient(to bottom, #000, #000000aa);
}





.grid-sect {
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

@media(max-width: 760px) {
	.grid-sect {
		grid-template-columns: repeat(1, 1fr);
	}
}





.newsletter-email-sect {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	gap: 12px;
}

.newsletter-email-sect .email-input{
	min-width: 300px;
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-radius: var(--default-border-radius);
	background: transparent;
	color: #000;
	padding: 8px;
	transition: all 0.3s;
}

.newsletter-email-sect .email-input:focus{
	border: 2px solid var(--accent-color);
}



.newsletter-email-sect .primary-btn-slim {
	display: inline-block;
	width: auto;
	justify-content: center;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 12px 8px 12px;
	color:white;
	position: relative;
	background: var(--accent-color);
	border-radius: var(--default-border-radius);
	text-align: center;
	box-shadow: 0 0 6px #00000022;
	backdrop-filter: blur(8px);
	transition: all 0.3s;
}

.newsletter-email-sect .primary-btn-slim:hover {
	background: #4858dd;
	text-decoration: none;
	color: white;
}






.cookie-footnote {
	display: flex;
	position: fixed;
	width: 100vw;
	overflow: hidden;
	z-index: 1000;
	bottom: 0;
	flex-direction: row;
	justify-content: space-around;
	gap: 16px;
	color: white;
	background: #000;
	padding: 12px;
}





/*---------------------
	Global Colors and Backgrounds
-----------------------*/
.light-75 {
	color: #999;
}

.light-85 {
	color: #ccc;
}

.light-100 {
	color: #fff;
}




.dark-55 {
	color: #6f6f6f;
}

.dark-70 {
	color: #555;
}

.dark-75 {
	color: #444;
}

.dark-80 {
	color: #3f3f3f;
}

.dark-100 {
	color: #000;
}




.bg-black-100 {
	background: #000000ff;
}

.bg-black-90 {
	background: #000000ee;
}

.bg-black-80 {
	background: #000000dd;
}

.bg-black-75 {
	background: #000000d6;
}

.bg-black-50 {
	background: #00000066;
}

.bg-black-30 {
	background: #00000033;
}





.bg-white-100 {
	background: #ffffffff;
}

.bg-white-90 {
	background: #ffffffee;
}

.bg-white-80 {
	background: #ffffffdd;
}

.bg-white-75 {
	background: #ffffffcc;
}

.bg-white-50 {
	background: #ffffff66;
}

.bg-white-30 {
	background: #ffffff33;
}






.gradient {
  background: linear-gradient(to right, rgba(80, 38, 240, 0.95), rgba(190, 34, 227, 0.95));
}



/*---------------------
	Global Containers
-----------------------*/
.play-btn-cont {
	width: 100%;
	height: 100%;
	place-self: center;
	align-items: center;
	display: flex;
	justify-content: center;
}


.video-cont {
	width: 500px;
	height: 400px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--default-border-radius);
	overflow: hidden;
	display: flex;
	object-fit: cover;
	background-size: cover;
	background-position: center;
	transition: scale 0.3s ease;
}


.video-cont-big {
	display: flex;
	width: 100%;
	box-shadow: 0 0 64px #00000055;
	height: 70vh;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--default-border-radius);
	overflow: hidden;
	object-fit: cover;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: scale 0.3s ease;
}


.hero-item-cont {
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0 32px 0 32px;
	justify-content: center;
	overflow: hidden;
}


/*.meta-box-hero {
    display: flex;
    position: relative;
    align-items: center;
    align-self: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px;
    gap: 12px;
    z-index: 1;
    flex-wrap: nowrap;
    top: 75vh;
    border-radius: 32px;
    background: #000000aa;
	box-shadow: 2px 0 12px #00000044;
	backdrop-filter: blur(8px);
}*/

.meta-box-hero {
    display: flex;
    position: relative;
    align-items: center;
	align-self: stretch;
    flex-direction: row;
    justify-content: space-around;
    padding: 0 64px 2px 64px;
    gap: 12px;
    z-index: 1;
    flex-wrap: nowrap;
    top: 75vh;
}

@media(max-width: 1024px) {
	.meta-box-hero {
    	padding: 0 32px 2px 32px;
	}
}

@media(max-width: 760px) {
	.meta-box-hero {
    	padding: 0 8px 2px 8px;
	}
}





.meta-box-right {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px 0 64px;
  z-index: 1;
  gap: 8px;
  flex-wrap: wrap;
  align-content: flex-end;
}


.meta-box {
    align-items: flex-start;
    display: flex;
    position: relative;
    flex-direction: column;
    z-index: 1;
}









.hero-item-cont-2 {
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	flex-wrap: wrap;
	margin: 32px 32px 0 32px;
	overflow: hidden;
	justify-content: space-evenly;
}








/* 🟢🟢🟢 BEGIN Sections */
/* ********************** */
.section {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}


.section-title {
	font-family: 'OpenSans-Bold', sans-serif;
}


.section-hero-item {
    height: auto;
    width: 100vw;
    padding-bottom: 32px;
    background: black;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 32px;
}

@media(max-width: 760px) {
	.section-hero-item {
	    height: 780px;
	}
}

.section-hero-cont {
    height: 30vh;
    width: 100vw;
    margin-top: 27vh;
}

.section-hero-item-fill {
    height: 100vh;
    width: 100vw;
    background: black;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 32px;
}

.section-hero-item-special {
    display: flex;
    place-self: center;
    height: 100vh;
    width: 80vw;
    border-radius: 16px;
    top: 200px;
    background: black;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 32px;
}

.section-software-hero-item {
    height: 60vh;
    width: 100vw;
    background: #444;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    align-content: stretch;
    gap: 32px;
}

.section-hero-item .hs-hero {
	height: 100px;
	background: transparent;
}


.section-item-1 {
    min-height: 100vh;
    width: 100vw;
    background: white;
    overflow: hidden;
    padding: 128px 128px 128px 128px;
    /*align-items: stretch;*/
    align-items: center;
    align-content: center;
    justify-items: stretch;
    justify-content: center;
}


.footnote-sect {
	display: flex;
	height: auto;
	width: 100vw;
	background: white;
    overflow: hidden;
	padding: 0 148px 8px 148px;
	gap: 0;
    align-items: stretch;
    align-content: center;
    justify-items: stretch;
}

@media(max-width: 1024px) {
	.footnote-sect {
		padding: 0px 68px 8px 68px;
		flex-wrap: wrap;
	}
}

@media(max-width: 760px) {
	.footnote-sect {
		padding: 0px 38px 38px 8px;
		flex-wrap: wrap;
	}
}



.section-item-1-for-text {
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
    padding: 128px 140px 128px 140px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: white;
	justify-content: stretch;
}

.ul-for-text {
	list-style: circle;
	color: #333;
	padding-left: 16px;
	gap: 8px;
}

@media(max-width: 1024px) {
	.section-item-1, .section-item-1-for-text, .section-item-1-v-fill {
		padding: 96px 64px 64px 64px;
	}

	 .section-item-1-auto-height {
	 	padding: 8px 64px 8px 64px;
	 }
}

@media(max-width: 760px) {
	.section-item-1, .section-item-1-for-text, .section-item-1-v-fill {
		padding: 96px 16px 64px 16px;
	}

	 .section-item-1-auto-height {
	 	padding: 8px 16px 8px 16px;
	 }
}



.software-grid-section {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	justify-content: center;
	width: 100%;
	gap: 32px;
	padding: 128px 128px 128px 128px;
	background: white;
}

@media (max-width: 760px) {
	.software-grid-section {
		padding: 32px 16px 32px 16px;
		justify-content: center;
		grid-template-columns: repeat(1, 1fr);
	}
}



.v-snap-scroll-cont {
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	overflow-x: hidden;
	scroll-snap-type: y mandatory;
	scroll-snap-align: start;
	min-height: 100vh;
	width: 100%;
}


/********************************************************************/
/********************************************************************/
.software-tile-cont {
	display: flex;
	flex-direction: column;
	position: relative;
	border: 1px solid #33333344;
	box-shadow: 0 0 12px #00000022;
	border-radius: var(--default-border-radius);
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #fff;
	transition: all 0.3s ease;
}

@media (max-width: 760px) {
	.software-tile-cont {
		width: 100%;
		border-radius: 24px;
	}
}

.software-tile-cover-img-holder {
	height: 100%;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.software-tile-cover-img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.software-tile-info-cont {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	position: relative;
	padding: 16px;
	gap: 8px;
	height: auto;
	width: 100%;
}

.software-img {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 64px;
	height: 64px;
	min-width: 64px;
	min-height: 64px;
	border: 1px solid rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 4px #00000022;
	border-radius: 16px;
	object-fit: cover;
}

@media(max-width: 760px) {
	.software-img {
		width: 48px;
		height: 48px;
		min-width: 48px;
		min-height: 48px;
	}
}




.software-title {
	font-size: 24px;
	font-weight: 600;
}

@media (max-width: 760px) {
	.software-title {
		font-size: 16px;
	}
}



.software-category {
	font-size: 20px;
}

@media (max-width: 760px) {
	.software-category {
		font-size: 14px;
	}
}



.software-platforms-holder {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.software-platform {
	font-size: 24px;
}

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





.section-gradient-bg {
    background: none;
    background-image: linear-gradient(40deg, #bab, #06f);
}


.section-gradient-bg-2 {
    background: none;
    background-image: linear-gradient(40deg, #656, #06f);
}


.section-gradient-bg-3 {
    background: none;
	/*background-image: radial-gradient(circle at 30% 50%, #656, #06f);*/
	/*background-image: radial-gradient(circle, #656, #06f);*/
	/*background-image: radial-gradient(ellipse at top left, #656, #06f);*/
	/*background-image: radial-gradient(circle closest-side at 50% 50%, #656, #06f);*/
	
	/*background-image: conic-gradient(from 40deg, #656, #06f, #656);*/

	/*background-image: conic-gradient(from 0deg, #656, #06f, #656);*/
	/*background-image: conic-gradient(from 0deg, #05f, #0ff, #05f);*/
	/*border-radius: 50%;*/

	/*background-image: repeating-linear-gradient(40deg, #656, #06f 20px);*/
	background-image: radial-gradient(circle, #aaf 0%, #aaf 40%, #fff 100%);
	/*background-image: conic-gradient(from 0deg, #656 0deg 36deg, #06f 36deg 72deg, #656 72deg 108deg);*/
	/*background-image: radial-gradient(circle at 35% 35%, #a9a, #656, #03c);*/

}


.section-item-1-center {
    min-height: 100vh;
    width: 100vw;
    background: white;
    overflow: hidden;
    padding: 128px 128px 128px 128px;
    align-items: stretch;
    align-content: center;
    justify-items: center;
}

.section-item-1-v-fill {
    padding: 16px 128px 16px 128px;
    width: 100vw;
    background: white;
    overflow: hidden;
    align-items: stretch;
    align-content: stretch;
    justify-items: stretch;
    justify-content: stretch;
    /*-webkit-user-modify: read-write-plaintext-only;*/
}

@media(max-width: 1024px) {
	.section-item-1-v-fill {
		padding: 16px 64px 16px 64px;
	}
}

@media(max-width: 760px) {
	.section-item-1-v-fill {
		padding: 0 32px 16px 32px;
	}
}



.section-item-1 .align-begin {
    align-content: flex-start;
}

.section-item-1 .play-btn-cont {
	width: 100%;
	height: 100%;
	align-items: center;
	display: flex;
	justify-content: center;
}


.section-item-2 {
    min-height: 100vh;
    width: 100%;
    background: white;
    overflow: hidden;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}



.section-item-3 {
    min-height: auto;
    width: 100%;
    background: white;
    overflow: hidden;
    padding: 24px;
    display: flex;
    gap: 0;
}



.legal-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    padding: 0;
    gap: 24px;
    background: transparent;
    overflow: hidden;
}

@media (max-width: 760px) {
	.legal-items-grid {
	    grid-template-columns: repeat(2, 1fr);
	}
}



.legal-item {
    display: flex;
    width: 100%;
    min-height: 100px;
    background: #eee;
    justify-content: space-between;
    overflow: hidden;
    padding: 24px;
    border-radius: var(--default-border-radius);
    gap: 24px;
}





.custom-modal {
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0);
	overflow: hidden;
	align-content: center;
	justify-content: flex-end;
	display: none;
	transition: all 0.3s ease;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 40;
	transition: all 0.3s ease;
}

.custom-modal.active{
	display: flex;
	flex-direction: column;
	background: rgba(0, 0, 0, 0.4);
}




.flex-begin {
    align-content: flex-start;
    justify-content: flex-start;
}


.flex-center {
    justify-items: center;
    align-items: center;
}




.modal-body {
	width: 100%;
	height: 100%;
	display: flex;
	gap: 1rem;
	flex-direction: column;
	overflow-y: auto;
}

.modal-body p {
	width: 100%;
	display: inline-block;
}


@media (min-width: 760px) {
	.modal-body {
		flex-direction: row;
	}
}


.modal-img {
	max-width: 400px;
	max-height: 400px;
	object-fit: contain;
}

.modal-links {
	list-style: none;
	display: inline-block;
	width: 100%;
	padding: 0;
	gap: 2rem;
}

.modal-header {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.modal-header .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  margin: 32px;
}

#leadership-modal .modal-header .btn-close {
  z-index: 2;
  margin: 22px;
}

#leadership-modal .modal-header {
  border-bottom: 0;
  padding: 0;
}

#leadership-modal .modal-footer {
  padding: 2rem 4rem;
}

/* ********************* */
/* END Sections 🔴🔴🔴 */



/*---------------------------------------
  ACCORDION               
-----------------------------------------*/
.accordion-cont {
	background: #33333388;
	backdrop-filter: blur(8px);
	/*height: 100vh;*/
	transition: all 0.3s ease;
}

.accordion-cont.light {
	background: #ffffff88;
}

.transp {
	background: transparent;
	backdrop-filter: none;
	transition: all 0.3s ease;
}






/*.nav-dropdown-btn{
  width: 40px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 3px;
  cursor: pointer;
}

.icon-lines{
  position: relative;
  width: 22px;
  height: 16px;
  display: inline-block;
}

.line{
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  transition: transform 240ms ease, opacity 180ms ease;
}

.l1{ top: 0; }
.l2{ top: 7px; }
.l3{ top: 14px; }

.nav-dropdown-btn.active .l1{
  transform: translateY(7px) rotate(45deg);
}
.nav-dropdown-btn.active .l2{
  opacity: 0;
  transform: scaleX(0.2);
}
.nav-dropdown-btn.active .l3{
  transform: translateY(-7px) rotate(-45deg);
}
*/







.accordion-item {
  background-color: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  width: 100%;
}

.accordion-button {
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
}

button:focus:not(:focus-visible) {
  border-color: transparent;
  box-shadow: none;
}







.accordion-btn {
  background-color: transparent;
  box-shadow: none;
}

.accordion-btn:not(.collapsed) {
  background: transparent;
  box-shadow: none;
}







.accordion-body {
  padding: 0;
  margin: 12px 0 24px 0;
  height: auto;
}

.accordion-body-navbar {
  padding: 0;
  margin: 12px 0 24px 0;
  height: 100vh;
}

.accordion-button {
  padding: 4px 0 4px 0;
}

.accordion-text {
	font-size: 18px;
	text-wrap: wrap;
	color: #777;
}




/*---------------------
	Global Embedded Media Styles
-----------------------*/
.hero-img {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	display: block;
	align-self: stretch;
	justify-self: center;
	border-radius: 16px;
	place-self: center;
	width: 80vw;
	height: 100%;
}

@media(max-width: 760px) {
	.hero-img {
		height: 60%;
		width: 90vw;
	}
}

.hero-overlay {
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
	width: inherit;
	height: inherit;
	position: absolute;
}
.hero-overlay-darkened-top {
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
	width: inherit;
	height: 20%;
	position: absolute;
}




.hero-img-1 {
	background-image: url('../img/software/hom-rnl-showcase-1.png');
}

.hero-img-2 {
	background-image: url('../img/software/zeno-legends-showcase-1.png');
}

.hero-img-3 {
	background-image: url('../img/software/randomizer-showcase-1.png');
}

/*@media(max-width: 1024px) {
	.hero-img-1 {
		background-image: url('../img/test_Medium.webp');
	}
	.hero-img-2 {
		background-image: url('../img/test_Medium.webp');
	}
	.hero-img-3 {
		background-image: url('../img/test_Medium.webp');
	}
}

@media(max-width: 760px) {
	.hero-img-1 {
		background-image: url('../img/test_Small.webp');
	}
	.hero-img-2 {
		background-image: url('../img/test_Medium.webp');
	}
	.hero-img-3 {
		background-image: url('../img/test_Medium.webp');
	}
}*/




.video-1 {
	background: url('../../img/test_wide.jpg');
	background-position: center;
	background-repeat: no-repeat;
}

/*@media(max-width: 1024px) {
	.video-1 {
		background: url('../../img/test_Medium.jpg');
	}
}

@media(max-width: 760px) {
	.video-1 {
		background: url('../../img/test_Small.jpg');
	}
}*/




/*---------------------
	Global Header
-----------------------*/
/* --> BEGIN Navbar */
.navbar-dropdown-blur-bg {
	display: block;
	position: fixed;
	z-index: -2;
	width: 100vw;
	height: 100vh;
	padding: 0;
	margin: 0;
	backdrop-filter: blur(8px);
	background: #000000aa;
	transform: scaleY(0.0);
	transition: all 0.3s ease;
}

@media(max-width: 760px) {
	.navbar-dropdown-blur-bg {
		padding: 0;
		margin: 0;
	}
}

.navbar-dropdown-blur-bg.active {
	transform: scaleY(1.0);
}

.navbar-dropdown-bg-white {
	display: inline-block;
	position: absolute;
	width: 100vw;
	height: 100vh;
	z-index: -2;
	padding: 0;
	margin: 0;
	backdrop-filter: blur(8px);
	background: #fff;
	transform: scaleY(0.0);
}

@media(max-width: 760px) {
	.navbar-dropdown-bg-white {
		padding: 0;
		margin: 0;
	}
}

.navbar-dropdown-bg-white.active {
	transform: scaleY(1.0);
}


.navbar {
	position: fixed;
	display: flex;
	top: 0;
	left: 0;
	right: 0;
	margin: 0;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: stretch;
	width: 100%;
	background-color: transparent;
	padding: 24px 64px 24px 64px;
	z-index: 3;
	transition: all 0.3s ease;
}

.navbar.compact{
	padding: 6px 128px 6px 128px;
	backdrop-filter: blur(8px);
	background: #000000aa;
}

@media(max-width: 1024px) {
	.navbar {
		padding: 24px 48px 24px 48px;
	}
	
	.navbar.compact {
		padding: 6px 64px 6px 64px;
	}
}

@media(max-width: 760px) {
	.navbar {
		padding: 24px 8px 24px 8px;
	}
	
	.navbar.compact {
		padding: 6px 16px 6px 16px;
	}
}



#cartDropdown {
	background: #33333388;
	padding: 16px;
}



.nav-sect-mobile {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	text-align: left;
	align-items: flex-start;
	align-content: stretch;
	width: 100%;
	gap: 8px;
}


.nav-sect-cart {
	display: grid;
	text-align: left;
	width: 100%;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-height: 500px;
	overflow-y: auto;
}

@media (max-width: 760px) {
	.nav-sect-cart {
		grid-template-columns: repeat(1, 1fr);
		gap: 8px;
	}
}



.navbar-holder {
	position: relative;
	display: flex;
	width: 100%;
	gap: 8px;
	align-items: center;
}

.nav-btns-holder {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	overflow-x: hidden;
	gap: 24px;
	height: inherit;
	width: 100%;
}

.nav-btns-holder-right {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 14px;
    height: inherit;
    float: right;
    justify-content: flex-end;
    flex-direction: row;
    width: 10%;
    z-index: 0;
}

@media(max-width: 1024px) {
	.nav-btns-holder {
		display: none;
	}
	
	.nav-btns-holder-right {
		width: 100%;
	}
}





.nav-btn {
	color: #ccc;
	text-wrap-mode: nowrap;
	font-size: 14px;
	text-align: center;
	padding: 8px 16px 8px 16px;
	align-content: center;
	align-items: center;
	display: block;
	margin: 2px;
	border: 2px transparent;
	transition: all 0.3s;
}
.nav-btn.dark {
	color: #333;
}
.nav-btn.black {
	background: black;
	color: white;
	border-radius: var(--default-border-radius);
}


.nav-btn:hover {
	background: var(--accent-color);
	border-radius: var(--default-border-radius);
	color: white;
}

.nav-btn:focus {
	border-radius: var(--default-border-radius);
}



.nav-btn.mobile {
	width: 100%;
	text-align: left;
	height: 48px;
}

.nav-btn.active {
	border: 2px solid var(--accent-color);
	border-radius: var(--default-border-radius);
}

.nav-btn-icon {
	color: #ccc;
	background: transparent;
	font-size: 20px;
	aspect-ratio: 1.0;
	width: 32px;
	height: 32px;
	text-align: center;
	padding: 8px 0 8px 0;
	align-content: center;
	display: block;
	border-radius: var(--default-border-radius);
	overflow: hidden;
	margin: 2px;
	border: 2px transparent;
	transition: all 0.3s;
}
.nav-btn-icon img {
	width: inherit;
	height: inherit;
	border-radius: inherit;
}

.nav-btn-icon:hover {
	color: var(--accent-color);
}



.nav-btn-icon.dark {
	color: #333;
}



.cart-btn-cont {
	display: block;
	max-width: 96px;
}



.nav-dropdown-btn {
	color: #ccc;
	font-size: 20px;
	background: transparent;
	text-align: center;
	padding: 8px 0 8px 0;
	width: 28px;
	aspect-ratio: 1.0;
	align-content: center;
	justify-content: center;
	border-radius: var(--default-border-radius);
	margin: 2px;
	border: 2px transparent;
	transition: all 0.3s;
	display: none;
}

.nav-dropdown-btn.dark {
	color: #000;
}

.nav-dropdown-btn:hover {
	color: var(--accent-color);
}


@media(max-width: 1024px) {
	.nav-dropdown-btn {
		display: block;
	}
}





.sub-nav-title {
	color: #aaa;
	font-weight: 400;
}


.sub-nav-btn {
	margin: 10px 18px 10px 18px;
	color: #ccc;
	font-size: 14px;
	text-align: center;
	align-content: center;
	display: block;
}
.sub-nav-btn.inactive {
	color: #aaa;
	font-weight: 400;
}
.sub-nav-btn.active {
	color: #fff;
	font-weight: 400;
}

.sub-nav-btn-dark {
	margin: 10px 18px 10px 18px;
	color: #333;
	font-size: 14px;
	text-align: center;
	align-content: center;
	display: block;
}




.sub-nav-btn-mobile {
	margin: 10px 18px 10px 18px;
	color: #333;
	font-size: 14px;
	text-align: left;
	align-content: center;
	display: block;
	width: 100%;
	height: 48px;
	transition: all 0.3s;
}
/* --> END Navbar */


/* --> BEGIN Header */
.header-logo-container {
	padding: 0;
	align-self: center;
}


#header-logo-img {
    width: 48px;
    height: 24px;
    object-fit: contain;
    padding: 0;
    transition: all 0.5s;
}

#header-logo-img a {
	display: inline-block;
}


.header-logo-title {
	text-align: left;
	font-weight: 600;
	font-size: 16px;
	text-wrap: nowrap;
	align-content: center;
	color: white;
	display: inline-block;
	padding-left: 4px;
	transition: all 0.3s;
}

.header-logo-title:hover {
	text-decoration: none;
	color: #fff;
}


.header-logo-title.dark {
	color: #000;
}

.header-logo-title-dark:hover {
	text-decoration: none;
	color: #111;
}
/* --> END Header */




.company-logo-img {
	background: url('../img/logo.png');
	background-position: center;
	background-size: contain;
	width: auto;
}

.company-logo-img-light {
	background: url('../img/logo-light.png');
	background-position: center;
	background-size: contain;
}


/*---------------------
	Global Footer
-----------------------*/
.footer {
	padding: 64px 128px 24px 128px;
	background: #eef;
	gap: 0;
	display: flex;
	width: 100%;
	min-height: 250px;
	flex-wrap: nowrap;
	text-align: left;
}

@media(max-width: 1024px) {
	.footer {
		padding: 24px 48px 24px 48px;
		flex-wrap: wrap;
	}
}

@media(max-width: 760px) {
	.footer {
		padding: 24px 8px 24px 8px;
		flex-wrap: wrap;
	}
}




.footer-flex {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

@media(max-width: 760px) {
	.footer-flex {
		flex-wrap: wrap;
		flex-direction: column;
	}
}




.footer-sect {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	text-align: left;
	align-items: flex-start;
	gap: 12px;
}

.footer-company-name {
	width: 100%;
	font-weight: 600;
	font-size: 24px;
}




.footer-sect .social-icons-holder {
	display: flex;
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-sect .social-icon {
	font-size: 24px;
}

.footer-right-items {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 64px;
	width: 100%;
	text-align: left;
	justify-content: flex-end;
}

@media(max-width: 760px) {
	.footer-right-items {
		justify-content: stretch;
		gap: 8px;
	}
}




.footer-section-title-mobile {
	color: black;
	font-size: 14px;
	text-align: left;
	width: 100%;
	margin: 0;
}



.footer-right-items-mobile {
	display: none;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: stretch;
	gap: 8px;
	width: 100%;
	text-align: left;
}

@media(max-width: 760px) {
	.footer-right-items {
		display: none;
	}
	.footer-right-items-mobile {
		display: flex;
		gap: 8px;
	}
}





.footlinks-right-items {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 40px;
	width: auto;
	text-align: left;
	justify-content: flex-end;
}

@media(max-width: 1024px) {
	.footlinks-right-items {
		justify-content: stretch;
		gap: 16px;
	}
}

@media(max-width: 760px) {
	.footlinks-right-items {
		justify-content: stretch;
		gap: 8px;
	}
}




.footlinks-right-items-mobile {
	display: none;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: stretch;
	gap: 8px;
	width: 100%;
	text-align: left;
}

@media(max-width: 760px) {
	.footlinks-right-items {
		display: none;
	}
	.footlinks-right-items-mobile {
		display: flex;
		gap: 8px;
	}
	.margin-bottom-solid {
		opacity: 0;
	}
}




.footer-section-title {
	color: black;
	font-size: 16px;
	font-weight: 500;
	text-align: left;
	width: 100%;
	margin-bottom: 10px;
}

.footer-section-item {
	color: #555;
	font-size: 14px;
	min-width: 100px;
	margin-bottom: 4px;
	transition: all 0.1s;
}







.footlinks-sect {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	gap: 32px;
}

@media(max-width: 760px) {
	.footlinks-sect {
		justify-content: flex-start;
		flex-direction: column-reverse;
	}
}




.footer-copyright-line {
	display: flex;
	width: 100%;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: space-between;
	align-content: space-between;
	gap: 40px;
}

.footer-copyright-text {
	margin-bottom: 0;
	font-weight: 300;
	font-size: 14px;
	/*align-self: center;*/
	color: #444;
	/*justify-self: left;*/
}

@media (max-width: 760px) {
	.footer-copyright-text {
		text-align: center;
	}
}

/* 🟢🟢🟢 BEGIN Spacing and Layout */
/* ************ */
.h-sep-64 {
	width: 64px;
}

.h-sep-32 {
	width: 32px;
}

.h-sep-24 {
	width: 24px;
}

.h-sep-16 {
	width: 16px;
}

.h-sep-8 {
	width: 8px;
}


.v-sep-64 {
	height: 64px;
}

.v-sep-32 {
	height: 32px;
}

.v-sep-24 {
	height: 24px;
}

.v-sep-16 {
	height: 16px;
}

.v-sep-8 {
	height: 8px;
}



.margin-empty-large {
	margin: 2px 0 2px 0;
}

.margin-bottom-solid {
	border: 1px solid rgba(64, 64, 64, 0.2);
	width: 100%;
	height: 1px;
	margin: 32px 0 8px 0;
}

.d-flex {
	display: flex;
	align-items: center;
}


.gap-2 {
	gap: 20px;
}

.gap-4 {
	gap: 40px;
}

.gap-5 {
	gap: 60px;
}

.gap-6 {
	gap: 80px;
}


.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

.spad-l-s {   /* spad left, small */
	padding-left: 2rem;
}


.no_list_style {
	 list-style: none;
}


.media-sect {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	gap: 16px;
}

.media-heading {
	font-weight: 600;
}


.media-sect-video {
	width: 320px;
	height: 260px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	object-fit: cover;
	transition: scale 0.3s ease;
}



@media(max-width: 1024px) {
	h1 {
		font-size: 64px;
	}

	h2 {
		font-size: 32px;
	}

	h3 {
		font-size: 28px;
	}

	h4 {
		font-size: 24px;
	}

	h5 {
		font-size: 18px;
	}

	h6 {
		font-size: 16px;
	}
}

@media(max-width: 760px) {
	h1 {
		font-size: 52px;
	}

	h2 {
		font-size: 44px;
	}

	h3 {
		font-size: 24px;
	}

	h4 {
		font-size: 20px;
	}

	h5 {
		font-size: 18px;
	}

	h6 {
		font-size: 16px;
	}
}
