/*  */

@font-face {
	font-family: "BDOGrotesk";
	src: url("/fonts/BDOGrotesk-Regular.otf") format("opentype");
}

@font-face {
	font-family: "BDOGrotesk";
	src: url("/fonts/BDOGrotesk-Bold.otf") format("opentype");
	font-weight: bold;
}

@font-face {
	font-family: "BDOGrotesk";
	src: url("/fonts/BDOGrotesk-Light.otf") format("opentype");
	font-weight: 200;
}



body {
  font: 14px "BDOGrotesk","Darker Grotesque", "Lucida Grande", Helvetica, Arial, sans-serif;
  /* option 1 */
  /* font: 14px "Helvetica Now Display", "Lucida Grande", Helvetica, Arial, sans-serif; */

  /* option 2 */
  /* font: 14px "Alliance No.2", "Lucida Grande", Helvetica, Arial, sans-serif; */

  /* option 3 */
  /* font: 14px "DM Sans", "Lucida Grande", Helvetica, Arial, sans-serif; */

  /* option 4 */
  /* font: 14px "Work Sans", "Lucida Grande", Helvetica, Arial, sans-serif; */
  margin: 0px;
  padding: 0px;
  min-height: 100vh;
  line-height: 1.5;
  background: linear-gradient(103deg, rgba(255, 181, 3, 0.10) 0%, rgba(65, 73, 251, 0.10) 100.78%), linear-gradient(0deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.02) 100%), #FFF;
}

a {
  color: #00B7FF;
}

*::selection {
	color: white;
	background: #26b2f8bd;
}
*::-moz-selection {
	background: #26b2f8;
}
*::-webkit-selection {
	background: #26b2f8;
}

h1, h2, h3, h4{
	margin: 0;
	padding: 0;
	line-height: 0.9;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}


.container_content {
	display: flex;
	max-width: 860px;
	width: 100%;
	flex-direction: column;
	/* background: #f2f2f2; */
}

.container_box {
	display: flex;
	width: 100%;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
}

section.splash_header {
	display: flex;
	height: 60vh;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0px;
	/* margin-bottom: 0px; */
	/* border-radius: 10px; */
	/* padding: 20px; */
	background-image: url('/images/Blue_B_splash_c.jpg');
	background-size: cover;
	background-position: center center;
	position: relative;
	overflow: hidden;
	width: 100%;
	/* display: none; */

	/* css mask clip, fade bottom */
	/* -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%); */
	/* mask-image: linear-gradient(to top, transparent, black 50%); */
}

.splash_logo {
	max-width: 450px;
	margin: 10px 20px;
	position: relative;
	z-index: 10;
	pointer-events: none;
}

.splash_text {
	color: white;
	font-size: 37px;
	text-align: center;
	line-height: 1;
	margin-top: 10px;
	position: relative;
	z-index: 10;
	pointer-events: none;
	/* mix-blend-mode: saturation; */
}

section.home_index {
	display: flex;
	padding: 20px;
}

.navigation_list_box {
	flex: 1 1 0;
	width: 0;
}

.navigation_list_title {
	text-transform: uppercase;
	margin-bottom: 8px;
	font-size: 20px;
	/* font-family: Inter; */
	color: gray;
	/* font-weight: 200; */
	letter-spacing: 0.5px;
}

.navigation_list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	z-index: 1;
	/* padding: 15px; */
}

a.navigation_link {
	text-decoration: initial;
	color: inherit;
	padding: 5px 30px;
	/* padding-bottom: 12px; */
	display: inline-flex;
	position: relative;
	background-color: #ff980000;
	transition: background 0.2s ease-out;
	/* margin: 0px 20px; */
	/* border-radius: 10px; */
	overflow: hidden;
	width: 100%;
	cursor: pointer;
}

.navigation_item {
	display: flex;
	flex-direction: column;
	position: relative;
	/* width: calc(100% - 40px); */
	/* margin-left: 25px; */
	z-index: 2;
	width: 100%;
}

.navigation_item_bullet {
	position: absolute;
	left: -30px;
	top: 5px;
	width: 30px;
	height: 30px;
	font-size: 13px;
	color: #ffb601;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	/* z-index: 3; */
}

.navigation_item_title {
	font-weight: bold;
	font-size: 20px;
	/* margin-bottom: -4px; */
}

.navigation_item_description {
	/* margin-top: -6px; */
	/* padding-bottom: 6px; */
	font-size: 16px;
	color: gray;
	line-height: 1.4;
	width: 100%;
	/* font-family: 'Inter'; */
	font-weight: 200;
}

.navigation_item::before {
	content: '';
	width: 100%;
	height: 1px;
	/* background: #ffb601; */
	position: absolute;
	bottom: 0px;
	/* display: none; */
}

a.navigation_link::after {
	/* display: none; */
	content: '';
	top: -50px;
	right: -50px;
	width: 25px;
	height: 25px;
	background: url('/images/icons/open_arrow.svg') center center no-repeat;
	background-size: 100%;
	position: absolute;
	transition: top 0.3s ease-out, right 0.3s ease-out;
}

a.navigation_link:hover::after {
	top: 10px;
	right: 10px;
	transition: top 0.1s ease-out, right 0.1s ease-out;
	/* transition: width 0.15s ease-in; */
}

a.navigation_link:hover .navigation_item_bullet{
	/* color: black; */
}

.navigation_item_bullet img {
	width: 10px;
}

.button {
	display: inline-flex;
	text-decoration: initial;
	text-transform: uppercase;
	font-weight: bold;
	color: white;
	border-radius: 100px;
	padding: 5px 22px;
	/* line-height: 6px; */
	font-size: 18px;
	padding-bottom: 7px;
	background-image: url(/images/Blue_button_bg.png);
	background-size: cover;
	background-position: center center;
	transition: filter 0.15s ease-out;
	cursor: pointer;
}

.button.center_button {
	margin: 0 auto;
}

footer {
	text-align: center;
	margin-top: 20px;
}

.footer_text {
	font-size: 15px;
	color: gray;
	margin-top: 13px;
	margin-bottom: 60px;
}

.button:hover {
	filter: brightness(1.2);
}



nav.main_menu {
	display: flex;
	max-width: 860px;
	width: 100%;
	height: 45px;
	padding: 0px 12px;
	flex-direction: row;
	justify-content: space-between;
	margin: 20px 0px;
	background: #333;
	border-radius: 5px;
}

.main_menu_left {
	display: flex;
}

.main_menu_right {
	display: flex;
	flex-direction: row;
	align-items: center;
}

a.main_menu_link.main_menu_link_home {
	display: flex;
	align-items: center;
	margin: 0px;
}

.main_menu_link {
	text-decoration: none;
	color: #d5d5d5;
	margin: 0px 16px;
	cursor: pointer;
	min-width: 54px;
	text-align: center;
	font-size: 15px;
	/* line-height: 1.0; */
}

a.button.main_menu_button {
	font-size: 14px;
	padding: 2px 18px;
	padding-bottom: 4px;
	margin-left: 9px;
}

a.main_menu_link.main_menu_link_home>div {
	margin-left: 8px;
}

.sub_menu_box {
	display: none;
	position: absolute;
	background: black;
	/* display: flex; */
	flex-direction: column;
	text-align: left;
	border-radius: 5px;
	overflow: hidden;
}

.selected.main_menu_link, .selected.main_menu_submenu {
	border-bottom: 1px solid #ffa500;
	font-weight: bold;
	color: white;
}

span.arrow {
	width: 8px;
	height: 4px;
	background-image: url('/images/arrow_down.svg');
	display: inline-block;
	background-size: contain;
	opacity: 0.6;
	margin-top: 1px;
	margin-left: 6px;
}

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

.main_menu_submenu:hover + .sub_menu_box, .sub_menu_box:hover{
	display: flex;
}

.main_menu_link:hover, .sub_menu_link:hover  {
	color: white;
}

.sub_menu_link:hover  {
	background: #ffffff59;
}

a.sub_menu_link {
	color: #d5d5d5;
	text-decoration: none;
	display: inline-flex;
	padding: 5px 10px;
	min-width: 200px;
}

.sub_menu_link>span {
	color: orange;
	margin-right: 6px;
}

.team_box {
	justify-content: stretch;
	align-items: flex-start;
	margin: 10px 38px;
	margin-top: 37px;
	position: relative;
	margin-bottom: 0px;
	border-radius: 5px;
	/* padding: 8px; */
	/* background-image: url('/images/Orange_About_bg.jpg'); */
	/* background-size: cover; */
	/* background-position: center center; */
	/* align-items: stretch; */
	/* text-align: center; */
}

h4 {
	font-weight: normal;
	font-size: 30px;
	color: #5e5e5e;
}

.profile_box {
	width: 100%;
	margin: 0px 8px;
	/* background: white; */
	overflow: hidden;
	display: inline-flex;
	flex-direction: row;
	/* height: 460px; */
	text-align: left;
	margin-bottom: 45px;
	padding-bottom: 20px;
	border-bottom: 1px solid #d7d7d7;
}

.profile_text {
	padding: 0px 7px;
	margin-left: 20px;
}

.profile_name {
	font-weight: bold;
	font-size: 24px;
	margin-bottom: -5px;
	margin-top: -6px;
}

p, p.profile_bio {
	line-height: 1.2;
	margin: 5px 0px;
	margin-bottom: 10px;
	color: black;
	font-size: 16px;
	font-family: 'Inter';
	font-weight: 300;
	/* max-width: 380px; */
}

.profile_title {
	color: gray;
	font-size: 20px;
	font-weight: 200;
}

.screenshot {
	/* border-radius: 10px; */
	/* overflow: hidden; */
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 630px;
	margin: 18px auto;
	position: relative;
	flex-direction: column;
}

.screenshot>div {}


img.profile_image {
	width: 228px;
	/* width: 194px; */
	height: 194px;
	border-radius: 5px;
	border-radius: 1000px;
}


h4.page_subtitle {
	margin-top: -10px;
	line-height: 1;
	position: relative;
	margin-bottom: 30px;
	font-weight: 200;
}

div#content {
	background: #00000000;
	width: 100%;
	height: 100%;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	/* mix-blend-mode: exclusion; */
	/* border-radius: 170px; */
	display: flex;
}

.gradient_overlay {
	background-image: url(/images/Blue_B_splash_c.jpg);
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 5;
	mix-blend-mode: plus-lighter;
	pointer-events: none;
	opacity: 0.8;
	/* opacity: 0; */
}

div.dg.ac {
	display: none;
}

.prev_companies {
	display: flex;
	gap: 6px;
	/* border-bottom: 1px solid #dcdcdc; */
	padding-top: 10px;
	/* margin-top: 18px; */
	/* width: 200px; */
	align-items: center;
}

.container_content.wide_content {
	max-width: 1080px;
}

.center_text {
	text-align: center;
}

.vr_globe {
	position: absolute;
	left: -110px;
	top: -30px;
}

.trumersion_splash {
	position: relative;
	margin: 10px 0px;
}

.trumersion_screenshot {
	border-radius: 10px;
}

.tumersion_text_box {
	position: absolute;
	width: 380px;
	background: white;
	padding: 10px 20px;
	border-radius: 10px;
	font-weight: 500;
	font-size: 19px;
	bottom: -70px;
	right: -130px;
	box-shadow: 0px 6px 20px #00000021;
}

.large_title {
	font-size: 52px;
}

.large_subtitle {
	font-weight: 400;
	color: gray;
	max-width: 700px;
	font-size: 27px;
	line-height: 1;
}

section.center_section {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.feature_box_bg {
	width: 100%;
	background: #f3f3f3;
	border-radius: 10px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.feature_box_images {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.avatar_kal_box {
	width: 250px;
	height: 268px;
	overflow: hidden;
	position: absolute;
	bottom: 0px;
	right: 50px;
	transition: all 0.25s ease-out;
}

img.avatar_kal {
}

.feature_box {
	margin: 30px 0px;
}

.avatar_motty_box {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0px;
	left: 0px;
}

img.avatar_motty {
	transform: translate(240px, -80px) rotate(225deg);
	transition: all 0.25s ease-out;
}

.avatar_surfman_box {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0px;
	left: 0px;
	border-radius: 10px;
}

img.avatar_surfman {
	transform: translate(-22px, -60px);
	transition: all 0.25s ease-out;
}

.feature_box_title {font-size: 54px;max-width: 290px;line-height: 0.8;font-weight: 900;height: 110px;text-align: center;z-index: 5;background: #FFA600;background: linear-gradient(to bottom right, #FFA600 0%, #FFCC26 100%);-webkit-background-clip: text;-webkit-text-fill-color: transparent;}

.feature_box:hover .avatar_kal_box {
	height: 238px;
	right: 20px;
}

.feature_box:hover img.avatar_motty {
	transform: translate(220px, -110px) rotate(215deg);
}

.feature_box:hover img.avatar_surfman {
	transform: translate(-102px, -60px);
}

.feature_box.first_feature_box {
	margin-top: 100px;
}

.other_box_images{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0px;
	left: 0px;
}

.other_box_images_container {
	width: 100%;
	height: 100%;
	/* overflow: hidden; */
	position: absolute;
	top: 0px;
	left: 0px;
	display: flex;
	align-items: center;
	justify-content: center;

	transition: all 0.25s ease-out;
}

.feature_box:hover .other_box_images_container{
	transform: scale(1.2);

}

.eiffel_box {
	width: 180px;
	height: 248px;
	overflow: hidden;
	position: absolute;
	bottom: 0px;
	left: -20px;
	transition: all 0.25s ease-out;
}

img.lantern_image {
	/* transform: translate(520px, -80px); */
	transition: all 0.25s ease-out;
	right: -20px;
	position: absolute;
	top: 23px;
}

img.mask_image {
	transform: translate(-280px, -60px);
	transition: all 0.25s ease-out;
	width: 190px;
}

img.taco_image {
	transform: translate(120px, 70px);
	transition: all 0.25s ease-out;
}

.other_box_images>img {
	position: absolute;
}

img.football_image {
	transform: translate(330px, -80px);
	transition: all 0.25s ease-out;
	opacity: 0.7;
	filter: blur(2px);
}

img.actual_football_image {
	transform: translate(22px, 60px);
	transition: all 0.25s ease-out;
	opacity: 0.7;
	filter: blur(2px);
}

.feature_box_images.overflow_hidden {
	overflow: hidden;
}

img.data_backed_image {
	margin-top: 65px;
	transition: all 0.25s ease-out;
	filter: grayscale(1);
}

.feature_box:hover img.data_backed_image {
	filter: grayscale(0);
	margin-top: 25px;
}

img.multilingual_image {
	transition: all 0.25s ease-out;
	margin-top: 16px;
}

.feature_box:hover img.multilingual_image {
	transform: scale(1.2);
}

.large_title.center_text.long_title {
	max-width: 660px;
	line-height: 0.8;
	margin-bottom: 10px;
}

h2.large_subtitle.center_text {}

.globe_center {
	margin: 60px 0px;
	margin-bottom: 10px;
	position: relative;
}

section.center_section.pack_your_bags {
	margin-top: 100px;
}

.platform_feature_box {
	display: block;
	background: #FDFDFD;
	box-shadow: 0px 1px 5px #0000001c;
	margin: 10px;
	padding: 20px;
	border-radius: 10px;
}

.platform_features {
	display: grid;
	grid-template-columns: auto auto auto;
}

img.platform_feature_icon {
	height: 52px;
	width: auto;
	margin: 0 auto;
}

h3.platform_feature_title {
	font-size: 22px;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
}

p.platform_feature_description {
	font-family: 'Inter';
	color: #525252;
	font-weight: 300;
	margin: 0px;
	line-height: 1.5;
}

.for_boxes {
	display: grid;
	grid-template-columns: auto auto auto auto;
}

.for_box {
	display: block;
	background: #FDFDFD;
	box-shadow: 0px 1px 5px #0000001c;
	margin: 8px;
	padding: 15px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

p.for_box_description {
	font-family: 'Inter';
	color: #525252;
	font-weight: 300;
	margin: 0px;
	padding-bottom: 40px;
	line-height: 1.5;
}

h3.for_box_title {
	font-size: 22px;
	/* text-align: center; */
	margin-top: 0px;
	margin-bottom: 5px;
}

img.for_box_image {
	position: absolute;
	right: -20px;
	bottom: 0px;
	opacity: 0.2;
}

h2.page_h2_title {
	font-size: 28px;
	margin-top: 20px;
	margin-bottom: 10px;
}

section.center_section.for_who {
	margin-top: 90px;
	margin-bottom: 90px;
}

.for_box_text {
	position: relative;
	z-index: 5;
}

.button.start_learning {
	margin: 20px auto;
}

section.center_section.dont_memorize {
	margin-top: 100px;
}

img.planet_image {
	width: 200px;
}

.button.button_orange {
	background-image: url(/images/Orange_button_bg.png);
}

.globe_text_bubbles {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* transform: rotateZ(0deg); */
}

.globe_text_bubbles>div {
	position: absolute;
	padding: 1px 5px 2px;
	background: white;
	border-radius: 4px;
	box-shadow: 0px 4px 10px #00000021;
	font-weight: bold;
	font-size: 18px;
	transform: translate(0px, 0px) scale(0) rotate(45deg);
	transition: all 0.5s cubic-bezier(0.83, 0.48, 0.38, 1.4);
}

div.text_bubble_1 {
	background: #F7E7FD;
}

div.text_bubble_2 {
	background: #E0FFCC;
}

div.text_bubble_3 {
	background: #FAD1D1;
}

div.text_bubble_4 {
	background: #C8E7FB;
}

div.open.text_bubble_1 {
	transform: translate(110px, -74px) scale(1) rotate(0deg);
}

div.open.text_bubble_2 {
	transform: translate(66px, 74px) scale(1) rotate(0deg);
}


div.open.text_bubble_3 {
	transform: translate(-66px, 94px) scale(1) rotate(0deg);
}

div.open.text_bubble_4 {
	transform: translate(-66px, -44px) scale(1) rotate(0deg);
}



img.vr_globe_image {
	/* transform: rotate(-15deg); */
	/* animation: slowRotateIn 3s ease-in; */
}

h1.page_title {
	margin: 0.5em 0px;
}

@keyframes slowRotateIn {
	0% {
		transform: rotate(-5deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

span.scenario_rotator {
	text-align: center;
	width: 820px;
	height: 60px;
	display: flex;
	font-size: 32px;
	font-weight: bold;
	color: #000000;
	/* max-width: 100%; */
	position: relative;
	margin: 0 auto;
}

section.center_section.platform_features {
	margin-top: 60px;
}

span.scenario_rotator .highlight_orange {
	color: #ffb20c;
}

.map_marker{
	position: absolute;
	width: 63px;
	height: 80px;
	background: url('/images/trumersion/map_marker.png') no-repeat;
	background-size: contain;
	transform: translateY(50px) scale(0);
	transition: all 0.25s ease-out;
}

.map_marker>.map_marker_flag{
	position: absolute;
	top: 8px;
	left: 14px;
	width: 35px;
	height: 35px;
	overflow: hidden;
	border-radius: 100%;
}

.map_marker>.map_marker_flag>img{
	max-width: initial;
	height: 35px;
	margin-left: -6px;
}

.map_marker.active{
	transform: translateY(0px) scale(1);
	transition: all 0.5s cubic-bezier(0.83, 0.48, 0.38, 1.4);
}

.map_marker[data-index="0"]{
	left: -20px;
	top: 20px;
}

.map_marker[data-index="1"]{
	left: 13px;
	top: -30px;
}

.map_marker[data-index="2"]{
	left: 123px;
	top: -40px;
}

.map_marker[data-index="3"]{
	left: 159px;
	top: -8px;
	z-index: -1;
}

.map_marker[data-index="4"]{
	left: 135px;
	top: -30px;
}




/* phone size */

@media (max-width: 600px) {
	.home_index{
	  flex-direction: column;
	}
  
	.navigation_list_box {
	  width: 100%;
	  margin-bottom: 10px;
	}
  
	nav.main_menu {
	  flex-direction: column;
	  margin: 0px;
	  height: 91px;
	  border-radius: 0px 0px 5px 5px;
	  padding: 10px;
	  overflow: hidden;
	}
  
	.container_content{
	  padding: 0px 10px;
	}
  
	.profile_box{
	  width: 100%;
	  margin: 0px;
	  margin-bottom: 10px;
	  height: auto;
	  flex-direction: column;
	  min-height: 170px;
	  align-items: center;
	}
  
	  img.profile_image{
		  /* width: 100%; */
		  /* height: auto; */
		  /* max-width: 228px; */
		  margin-bottom: 10px;
	  }
  
	  .team_box{
		  /* background: #ffa500; */
		  margin: 5px;
	  }
  
	  .main_menu_right{
		  justify-content: center;
	  }
  
	  .profile_text{
		  margin-left: 0px;
	  }

	  span.scenario_rotator{
		font-size: 20px;
		width: 300px !important;
		margin: 0 auto;
		/* display: inline-block; */
		}

	.scenario_rotator .front{
		/* max-width: 100%; */
		width: 300px !important;
		white-space: wrap;
	}
	.scenario_rotator .back{
		/* max-width: 100%; */
		width: 300px !important;
		white-space: wrap;
	}

	.vr_globe{
		position: relative;
		left: 0px;
		top: 20px;
	}

	.tumersion_text_box{
		position: relative;
		top: 0px;
		bottom: 0px;
		right: 0px;
		margin-top: 10px;
	}

	h1.page_title{
		margin-bottom: 1em;
		margin-top: 0;
	}

	.platform_features{
		grid-template-columns: auto;
	}

	.for_boxes{
		grid-template-columns: auto;
	}

	.avatar_kal_box{

		transform: scale(0.5) translate(260px, 0px);
		transform-origin: bottom;
	}
	.avatar_surfman_box{
		transform: scale(0.5) translate(-230px, 100px);
	}

	.lantern_image{
		transform: scale(0.6) translate(0px, 0px);
		transform-origin: right;
	}
	.eiffel_image{
		transform: scale(0.7) translate(0px, 0px);
		transform-origin: left;
	}

	.actual_football_image{
		display: none;
	}
  }
  
  /* phone size */
  
  @media (max-width: 300px) {
  
	.profile_box{
	  flex-direction: column;
	}
  }

.scenario_rotator_box {
	/* display: flex; */
	/* align-items: center; */
	/* justify-content: center; */
	width: 100%;
}



.navigation_coming_soon_text {
	/* background: orange; */
	/* color: black; */
	/* font-weight: bold; */
	color: orange;
	/* font-size: 16px; */
	font-family: 'Inter';
	margin-left: 30px;
	margin-top: -10px;
}

.navigation_coming_soon {
	filter: grayscale(1);
	opacity: 0.6;
	pointer-events: none;
}

/* Discord button styling */
.btn-primary.discord-login {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  border-radius: 100px;
  padding: 8px 24px;
  font-size: 18px;
  background: #5865F2;
  border: none;
  transition: filter 0.15s ease-out;
  cursor: pointer;
}

.btn-primary.discord-login:hover {
  filter: brightness(1.2);
}

.btn-secondary.discord-logout {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  border-radius: 100px;
  padding: 2px 14px;
  font-size: 16px;
  background: #4a4a4a;
  border: none;
  transition: filter 0.15s ease-out;
  cursor: pointer;
}

.btn-secondary.discord-logout:hover {
  filter: brightness(1.2);
}

h2.orange_title {
	color: #fba70f;
	margin: 10px 0px;
	margin-top: 20px;
}

h3.bold_black_title {
	margin-top: 20px;
}

section.section_narrow {
	max-width: 640px;
	margin: 20px auto;
}

img.gg_logo {
	/* margin: 0px 20px; */
}

.center_button_container {
	display: flex;
	margin: 30px 0px;
	align-items: center;
}

span.gg_time {
	font-family: monospace;
	font-weight: bold;
	color: gray;
}

p.note_text {
	font-size: small;
	color: gray;
	font-style: italic;
}

.discord_login_container {
	display: flex;
	align-items: center;
	gap: 10px;
}

.discord_login_container>p {
	display: flex;
	align-items: center;
	margin: 0px;
}

span#idme-verification {
	display: flex;
}

p.success-message {
	color: #08833d;
	font-weight: normal;
	margin-bottom: 0px;
}

section.verification-step {
	border: 1px solid gray;
	padding: 10px 20px;
	margin: 20px 0px;
}

.button.block_button.button_secondary.add_to_calendar {
  font-size: 14px;
  padding: 2px 18px;
  /* padding-bottom: 4px; */
  margin: 0px;
  margin-bottom: 20px;
  /* background: #fba70f; */
  border: 2px solid orange;
  background: none;
  color: #ffa500;
}

.success-message {
	background-color: #d4edda;
	color: #155724;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	margin: 1rem 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 16px;
	}
  
  .error-message {
	background-color: #f8d7da;
	color: #721c24;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	margin: 1rem 0;
	font-size: 18px;
	}
  
  .check-icon {
	color: #155724;
  }

.gg_splash_art {
	background: url('/images/gamers-and-guardians/gamers_guardians_new_splash.jpg') no-repeat center center;
	background-size: cover;
	border-radius: 10px;
	/* margin-bottom: 20px; */
	padding: 40px;
}

.gg_splash_art h4.page_subtitle {
	color: white;
	font-weight: bold;
}

.gg_splash_art h1.page_title {
	color: #ff3941;
	font-weight: normal;
	margin-bottom: 18px;
}

h3.bold_black_title.date_title {
	/* font-size: 20px; */
	margin-top: 0px;
	color: #333333;
	font-family: 'Inter';
}

h3.bold_black_title.gg_black_title {
	font-size: 23px;
	margin-top: 0px;
	margin-bottom: 10px;
}

.button.discord_button {
  margin-top: 10px;
  margin-left: 20px;
}

.button.button_secondary.discord_button {
  background: #5865F2;
  background-image: none;
}

.button.button_secondary.discord_button:hover {
  filter: brightness(1.1);
}

img.gg_start_icon {
	margin: 20px;
}

.button.donate_button {
	display: flex;
	align-items: center;
	gap: 7px;
	/* background-image: none; */
	/* background: #a92725; */
}

.donate_button .icon_container {
	margin-top: 2px;
}

.donate_button {
  position: relative; /* Add this to position the hearts relative to button */
}

.floating-heart {
  position: absolute;
  pointer-events: none;
  animation: float-away 1.5s ease-out forwards;
  opacity: 0;
}

@keyframes float-away {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(var(--tx), -100px) scale(0.5);
    opacity: 0;
  }
}

/* Update existing donate button styles */
.button.donate_button {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow: visible; /* Allow hearts to float outside button */
}

.past-event-details {
  margin: 20px 0;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.past-event-details summary {
  cursor: pointer;
  padding: 10px;
  color: #666;
  font-weight: bold;
  font-size: 16px;
}

.past-event-details summary:hover {
  color: #fba70f;
}

.details-content {
  padding: 10px;
}

.gg_video_container {
	margin: 20px 0px;
}

h4.center_splash_text {
	margin: 50px 0px;
	margin-bottom: 100px;
}

.gg_stats_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.gg_stat_item {
  font-size: 22px;
  border: 1px solid #dddddd;
  padding: 10px;
  /* border-radius: 8px; */
  text-align: center;
  position: relative;
}

.gg_stat_item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fba70f;
}

.gg_stat_value {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 5px;
  min-width: 100px;
  display: flex;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  font-family: monospace;
  height: 55px;
  overflow: hidden;
}

.digit-column {
  position: relative;
  overflow: hidden;
  height: 50px;
  min-width: 26px; /* Adjust based on your font size */
}

.digit-scroll {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-500px); /* Start above */
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.comma {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.comma.visible {
  opacity: 1;
}

.gg_stat_title {
  color: #fba70f;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: -6px;
}

@media (max-width: 600px) {
  .gg_stats_container {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
  }

  .gg_stat_item {
    padding: 15px;
  }

  .gg_stat_value {
    font-size: 36px;
  }
}

img.gg_wide_image {
	border-radius: 10px;
	height: 280px;
	width: 100%;
	object-fit: cover;
	margin: 0.5em 0;
}

h2.medium_title {
	font-size: 32px;
	margin-bottom: 0.5em;
}

section.wide_image {
	padding: 0px 108px;
}


div.two_column_container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

div.two_column_item {
  flex: 1;
}

img.gg_two_column_image {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  margin: 20px 0px;
  object-fit: cover;
}

img.gg_three_column_image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin: 20px 0px;
}

div.three_column_container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

div.three_column_item {
  flex: 1;
}

h3.orange_title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fba70f;
}

section.section_wide {
	max-width: 860px;
	margin: 20px auto;
}

h3.orange_subtitle {
	margin-top: -10px;
	margin-bottom: 30px;
}

video.gg_two_column_video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin: 20px 0px;
}

video.gg_wide_video {
  height: 360px;
  object-fit: none;
  border-radius: 10px;
  /* margin: 20px 0px; */

  animation: scaleInVideo 2s ease-out;
}

@keyframes scaleInVideo {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.gg_video_caption {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  transform: translateY(0px);
  animation: scaleInCaption 2.5s ease-out;
  z-index: -1;
  position: relative;	
}

@keyframes scaleInCaption {
	0% {
		transform: translateY(-100px);
		opacity: 0;
	}
	60% {
		transform: translateY(-100px);
		opacity: 0;	
	}
	100% {
		transform: translateY(0px);
		opacity: 1;
	}
}


/* phone above new content */
@media (max-width: 600px) {
  .gg_wide_video {
    height: 200px;
  }
  
  div.two_column_container {
    flex-direction: column;
  }

  img.gg_two_column_image {
    height: 200px;
  }

  video.gg_wide_video {
    height: 200px;
  }

  .gg_wide_image {
    height: 200px;
  }	

  div.three_column_container {
    flex-direction: column;
  }
}

.video_wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gg_video_container {
  margin: 20px 0px;
  max-width: 100%;
}

.news_article_preview {
  margin-bottom: 2em;
  padding-bottom: 2em;
  width: 100%;
  display: inline-flex;
  border-bottom: 1px solid #eee;
  flex-direction: column;
}

.news_article_link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news_article_link:hover {
  opacity: 0.8;
}

.news_article_date {
  color: #666;
  font-size: 1.2em;
  margin-bottom: 0px;
}

.news_article_title {
  font-size: 1.5em;
  font-weight: bold;
  text-transform: capitalize;
}

.news_article {
  /* margin: 0 auto; */
  /* width: 100%; */
  /* display: inline-flex; */
}

.news_article_meta {
  /* margin: 1em 0; */
  color: #666;
}

.news_article_content {
  font-size: 1.1em;
  line-height: 1.6;
  /* margin-bottom: 4em; */
}

.back_to_news {
  display: inline-block;
  margin-bottom: 2em;
  color: #666;
  /* text-decoration: none; */
}

.back_button:hover {
  color: #333;
}

.breadcrumbs {
  margin-bottom: 2em;
  color: #666;
  font-size: 18px;
  width: 100%;
}

.breadcrumb_item {
  text-decoration: none;
  color: inherit;
}

a.breadcrumb_item:hover {
  color: #333;
}

.breadcrumb_separator {
  margin: 0 0.5em;
}

.breadcrumb_current {
  color: #333;
  font-weight: 500;
}

.news_articles {
	margin-top: 3em;
	position: relative;
}

.page_subtitle::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background: #ffa500;
	bottom: -20px;
}

section.article_content {
	/* max-width: 960px; */
	/* margin: 0 auto; */
	/* display: flex; */
	/* flex-direction: column; */
	/* width: 760px; */
	/* align-items: flex-start; */
}

h1.news_article_big_title {
	font-weight: normal;
	font-size: 26px;
	color: #5e5e5e;
	position: relative;
	margin-bottom: 2em;
	line-height: 1.2;
}

h1.news_article_big_title::before {
	content: '';
	position: absolute;
	bottom: -30px;
	width: 100%;
	height: 1px;
	background-color: orange;
}

.news_article_release_tag {
	/* background: orange; */
	/* display: inline-flex; */
	/* padding: 0.2em 1em; */
	font-weight: bold;
	/* font-size: 14px; */
	margin: 0.5em 0;
}

.news_quote {
	margin: 2rem 0;
	padding: 1.5rem 2rem;
	background-color: #f8f9fa;
	border-left: 4px solid #ffa500;
	border-radius: 4px;
	}
  
  .news_quote p {
	font-style: italic;
	font-size: 1.1em;
	margin-bottom: 0.5rem;
	color: #2c3e50;
  }
  
  .news_quote cite {
	display: block;
	font-weight: 600;
	color: #495057;
	font-style: normal;
	margin-top: 0.5rem;
  }

.article_content {
  display: flex;
  gap: 40px;
  /* margin: 0 auto; */
}

.article_main {
  max-width: 570px;
  /* flex: 1; */
  /* min-width: 0; */ /* Prevents flex item from overflowing */
  /* width: 100%; */
  /* padding-bottom: 240px; */
}

.article_sidebar {
  width: 250px;
  flex-shrink: 0;
  display: none;
  flex-direction: column;
  justify-content: flex-end; /* This pushes content to bottom */
}

.press_room_sidebar {
	width: 250px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end; /* This pushes content to bottom */
  }

.media_contact_box {
  background: #f8f9fa;
  padding: 1.5rem;
  /* border-radius: 4px; */
  /* border-left: 4px solid #ffa500; */
  margin: 4em 0;
}

.media_contact_title {
  font-size: 1.2em;
  margin: 0 0 1rem 0;
  color: #ffa500;
}

.media_contact_info {
  font-size: 1em;
  line-height: 1.4;
}

.media_contact_name {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.3rem;
  font-size: 22px;
}

.media_contact_email {
  color: #00B7FF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 1.1em;
}

.media_contact_email:hover {
  text-decoration: underline;
}



.media_contact_email svg {
	margin-left: 3px;
}

.news_article_content p {
	line-height: 1.6;
}

.container_content.press_room_content {
	max-width: 570px;
}

.press_room_content {
	max-width: 570px;
}

.press_room_columns {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.news_article_content h2 {
	line-height: 1.6;
	margin-top: 1em;
}

.news_article_short_desc {
  font-size: 1em;
  font-family: 'Inter';
  color: #525252;
  font-weight: 300;
  margin: 0px;
  line-height: 1.6;
  margin-top: 0.5em;
}

/* Update mobile styles */
@media (max-width: 600px) {
  .article_content , .press_room_columns{
    flex-direction: column;
  }

  .article_sidebar {
    width: 100%;
    margin-top: 40px;
  }
  
  .media_contact_box {
    margin-bottom: 2rem;
  }

  a.button.main_menu_button{
	/* position: absolute; */
	/* right: 10px; */
	/* top: 10px; */
	}
}

/* Hamburger menu styles */
.hamburger_button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 20px;
  top: 12px;
  z-index: 1000;
}

.hamburger_line {
  width: 100%;
  height: 1px;
  /* border-radius: 5px; */
  background-color: #d5d5d5;
  transition: all 0.3s ease;
}

.hamburger_button.open .hamburger_line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger_button.open .hamburger_line:nth-child(2) {
  opacity: 0;
}

.hamburger_button.open .hamburger_line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Update mobile menu styles */
@media (max-width: 600px) {
  nav.main_menu {
    padding: 0;
    height: 45px;
    position: relative;
    margin-bottom: 20px;
  }

  .hamburger_button {
    display: flex;
  }

  .main_menu_right {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #333;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition: right 0.2s ease-in-out;
  }

  .main_menu_right.open {
    right: 0;
  }

  .main_menu_link {
    font-size: 24px;
    margin: 15px 0;
    width: 100%;
    /* background: #0000001a; */
    padding: 0px 10px;
  }

  .main_menu_submenu {
    flex-direction: column;
    color: #ffa500;
  }

	.main_menu_submenu .arrow{
		display: none;
	}

  .sub_menu_box {
    position: relative;
    background: none;
    display: flex;
    margin: 10px 0;
  }

  .main_menu_submenu:hover + .sub_menu_box,
  .sub_menu_box:hover {
    display: flex;
  }

  a.button.main_menu_button {
    position: relative;
    right: auto;
    top: auto;
    margin: 15px 0;
  }

  .main_menu_left {
    padding: 5px 10px;
  }
}

section.splash_fluid {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 40px;
	padding: 20px;
	background-image: url(/images/Blue_B_splash_c.jpg);
	background-size: 100% 100%;
	background-position: center center;
	position: relative;
	overflow: hidden;
	width: 680px;
	height: 320px;
	border-radius: 170px;
	position: absolute;
}

div#interactive_fluid {
	background: #000000;
	width: 100%;
	height: 100%;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
}

.homepage_bubble_menu {
	
	/* 2x2 */
	transition: gap 0.2s ease-out;
	display: flex;
	gap: 40px;
	top: -60px;
	position: relative;
	align-items: flex-start;
}

.homepage_bubble_menu_item_content .navigation_list_box {
	width: 100%;
	height: 100%;
	z-index: 10;
	position: relative;
}

.homepage_bubble_menu_item_title {
	/* font-weight: bold; */
	font-size: 24px;
	padding: 0px 10px;
	padding-top: 5px;
	line-height: 1;
	text-align: center;
	transition: all 0.4s ease-out;
	font-weight: 200;
	/* font-weight: 400; */
	color: #000000;
	white-space: nowrap;
}

.homepage_bubble_menu_item_content {
    overflow: hidden;
    /* Remove height transition since we're using jQuery animation */
    /* height: 0px; */
    /* transition: height 0.3s ease-out; */
    display: none; /* Add this */
    width: 100%;
    position: relative;
}

.homepage_bubble_menu_item {
	/* background: #ff000008; */
	/* height: 380px; */
	width: 380px;
	display: flex;
}

.homepage_splash_center {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	/* height: 100vh; */
	width: 100%;
	position: relative;
	z-index: 10;
	height: 60px;
}

.homepage_bubble_menu_item.bubble_top_left {
	/* align-items: flex-end; */
	/* justify-content: flex-end; */
	/* height: 200px; */
}

.homepage_bubble_menu_item.bubble_top_right {
	/* align-items: flex-end; */
	/* justify-content: flex-start; */
}

.homepage_bubble_menu_item.bubble_bottom_left {
	/* align-items: flex-start; */
	/* justify-content: flex-end; */
}

.homepage_bubble_menu_item.bubble_bottom_right {
	/* align-items: flex-start; */
	/* justify-content: flex-start; */
}

	

.homepage_bubble_menu_item_box {
	width: 100%;
	/* height: 445px; */
	/* border-radius: 30px; */
	background: linear-gradient(327deg, rgba(152, 127, 255, 0.35) 8.29%, rgba(255, 177, 3, 0.10) 32.07%, rgba(47, 68, 224, 0.04) 70.06%), #FFF;
	box-shadow: -1.5px -2.25px 0px 0px rgba(0, 0, 0, 0.07) inset, 1.5px 2.25px 0px 0px #ffffff00 inset, -17.25px -9px 37.35px 0px #fff4db00, 0px 27.75px 37.35px 0px rgba(0, 0, 0, 0.11);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	cursor: pointer;
	transform-style: preserve-3d;
	transition: transform 0.2s ease-out, height 0.4s ease-out, margin 0.4s ease-out;
	perspective: 1000px;
	position: relative;
	overflow: hidden;
	padding: 10px 25px;
}

.glow_overlay {
	position: absolute;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle at center, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 60%);
	transform: translate(-50%, -50%);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease-out;
	mix-blend-mode: overlay;
	z-index: 4;
}

.homepage_bubble_menu_item_title_container {
	display: flex;
	flex-direction: row;
	margin: 0px;
	/* margin-top: 10px; */
	align-items: center;
	transform: translateZ(20px);
	transition: transform 0.2s ease-out;
	width: 100%;
	justify-content: center;
	/* border-bottom: 1px solid orange; */
	padding: 10px;
}

.homepage_bubble_menu_item_icon {
	width: 64px;
	width: 48px;
	transition: all 0.4s ease-out;
}


.homepage_bubble_menu_item_box:hover .homepage_bubble_menu_item_content {
	/* height: attr(data-height); */
}

.homepage_bubble_menu_item_box:hover {
	/* height: calc(175px + 200px); */
	/* margin: 20px; */
	transition: transform 0.2s ease-out, height 0.3s ease-out, margin 0.2s ease-out;
}

div#content>canvas {
	/* border-radius: 170px; */
}

a.navigation_link:hover {
	background-color: #ff98002e;
	transition: background 0.1s ease-out;
}

.page_subtitle.trumersion_subtitle::before {
	display: none;
}

.partners_box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px 0;
}

.partner_row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  border-bottom: 1px solid #eaeaea;
}

.partner_logo {
  width: 200px;
  flex-shrink: 0;
}

.partner_logo img {
  width: 100%;
  height: auto;
}

.partner_info {
  flex-grow: 1;
}

.partner_name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}

.partner_description {
  color: #525252;
  font-family: 'Inter';
  font-weight: 300;
  line-height: 1.5;
  margin: 10px 0;
}

.partner_link {
  color: #00B7FF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-out;
  font-size: 16px;
}

.partner_link:hover {
  color: #0088cc;
}

@media (max-width: 600px) {
  .partner_row {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .partner_logo {
    width: 150px;
    margin: 0 auto;
  }
}

.homepage_bubble_menu_item_box:hover .homepage_bubble_menu_item_title {
	font-size: 26px;
	/* font-weight: 400; */
	transition: all 0.3s ease-out;
}

.homepage_bubble_menu_item_box:hover .homepage_bubble_menu_item_icon {
	width: 48px;
	transition: all 0.3s ease-out;
}

a.button.block_button.home_contact_button {
	position: absolute;
	bottom: 100px;
}


/* homepage laptops */

@media (max-width: 1400px) {
/* 
	.homepage_bubble_menu_item_title{
		font-size: 28px;
	}

	.homepage_bubble_menu {
		gap: 40px 350px;
	} */
}

/* homepage phone */

@media (max-width: 1200px) {
	/* .homepage_bubble_menu {
		grid-template: 1fr / 1fr;
		gap: 10px 0px;
		width: 100%;
		padding: 5px;
		padding-top: 260px;
	} */

	.homepage_splash_center{
		/* flex-direction: column; */
		/* align-items: center; */
		/* justify-content: flex-start; */
		/* margin-bottom: 100px; */
		/* height: auto; */
		/* transform: scale(.60); */
	}

	section.splash_fluid{
		width: 100%;
		height: 260px;
		border-radius: 0px;
		position: absolute;
		top: 0px;
		padding: 0px;
		margin: 0px;
	}

	.splash_fluid #content{
		/* display: none; */
		border-radius: 0px;
	}

	.splash_fluid #content>canvas{
		border-radius: 0px;
	}

	/* .homepage_bubble_menu_item{
		width: 100%;
		height: 385px;
	} */

	/* .homepage_bubble_menu_item_box{
		width: 100%;
		height: calc(175px + 200px);
	} */

	/* a.navigation_link{
		padding: 10px;
		margin: 5px 10px;
	}
	 */
	.homepage_bubble_menu_item_content{

	}

	.navigation_item_description{
		width: 100%;
	}

	.navigation_item{
		width: calc(100% - 40px);
		margin-left: 25px;
	}

	.homepage_bubble_menu_item_icon {
		width: 48px;
	}

	.homepage_bubble_menu_item_title{
		font-size: 26px;
	}

	a.button.block_button.home_contact_button{
		position: relative;
		bottom: 0px;
		margin: 20px 0px;
		margin-bottom: 100px;
	}
}



section.homepage_hero.our_purpose {
	display: flex;
	max-width: 960px;
	align-items: center;
	gap: 60px;
	justify-content: center;
	/* flex: 1 420px; */
	margin: 50px 0px;
}

.our_purpose_image {
	/* width: 420px; */
	border-radius: 12px;
}

h2.homepage_hero_title {
	font-size: 42px;
	font-weight: 900;
	margin: 0.25em 0;
}

span.title_accent {
	/* display: inline-flex; */
	position: relative;
}


span.title_accent::after {
	content: '';
	width: calc(100% + 10px);
	height: 32px;
	border-radius: 40px;
	position: absolute;
	left: -5px;
	top: 5px;
	background: orange;
	background: linear-gradient(111deg, #FFBF47 6.94%, #FFA703 91.82%);
	z-index: -1;
	transform: rotateZ(-3deg);
}

p.homepage_hero_subtitle {
	font-family: 'BDOGrotesk';
	font-weight: 200;
	font-size: 24px;
	color: #7c7c7c;
	font-style: italic;
	line-height: 1.4;
}

.homepage_hero_image.our_purpose_image_box {
	/* flex: 0 0 420px; */
	position: relative;
	flex: auto;
}

.our_purpose_image_decor_1 {
	width: 98px;
	height: 116px;
	position: absolute;
	right: -51px;
	top: -58px;
	background: linear-gradient(111deg, #FFBF47 6.94%, #FFA703 91.82%);
	border-radius: 24px;
}

.our_purpose_image_decor_2 {
	width: 88px;
	height: 86px;
	position: absolute;
	left: -51px;
	bottom: -38px;
	background: linear-gradient(111deg, #FFBF47 6.94%, #FFA703 91.82%);
	border-radius: 24px;
}

section.homepage_hero.our_story {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 60px;
}

section.homepage_fullwidth {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0000000a;
	margin: 50px 0px;
}

img.our_story_image {
	height: 360px;
	/* margin-left: -170px; */
}

.homepage_hero_image {
	flex: 0 0 770px;
	position: relative;
}

.homepage_hero_content {
	/* width: 500px; */
	flex: 0 0 500px;
	max-width: 670px;
	padding: 20px;
}

.homepage_hero_bento {
	/* height: 600px; */
	width: 100%;
	margin: 50px 0px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 100%;
	overflow: hidden;
	/* display: none; */
}

span.underline_green, span.underline_orange, span.underline_blue {
	position: relative;
	/* color: #666666; */
	/* font-weight: 300; */
	white-space: nowrap;
}

span.underline_green::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: -5px;
	width: calc(100% + 10px);
	height: 8px;
	border-radius: 20px;
	background: linear-gradient(45deg, #7be04b, #b5ff92);
	z-index: -1;
	transform: rotateZ(-1.5deg);
}

span.underline_orange::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: -5px;
	width: calc(100% + 10px);
	height: 8px;
	border-radius: 20px;
	background: linear-gradient(45deg, #ffa500, #ffd68b);
	z-index: -1;
	transform: rotateZ(-1.5deg);
}
span.underline_blue::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: -6px;
	width: calc(100% + 10px);
	height: 8px;
	border-radius: 20px;
	background: linear-gradient(45deg, #5ed2f1, #95d8eb);
	z-index: -1;
	transform: rotateZ(-0.5deg);
}


.bento_row {
	display: flex;
	gap: 10px;
}

.bento_box {
	display: flex;
	/* gap: 20px; */
	flex-direction: column;
	row-gap: 10px;
}

.bento_item {
	flex: 1;
	background: orange;
	background: linear-gradient(111deg, #FFBF47 6.94%, #FFA703 91.82%);
	background-size: cover;
	border-radius: 14px;
	width: 100px;
	height: 100px;
	font-size: 26px;
	color: white;
	font-weight: bold;
	display: flex;
	align-items: flex-end;
	padding: 7px 14px;
}

.bento_item.bento_double_width {
	flex: 2;
	width: 210px;
}	

.bento_item.bento_double_height {
	/* flex: 2; */
	height: 210px;
}	

.bento_item.bento_blue {
	background: linear-gradient(111deg, #26B3FA 6.94%, #15689D 91.82%), linear-gradient(111deg, #FFBF47 6.94%, #FFA703 91.82%);
}







h2.homepage_hero_title.our_mission_title {
	text-align: center;
}

section.page_links_row {
	display: flex;
	max-width: 960px;
	gap: 20px;
	/* width: 100%; */
	margin: 20px 0px;
	margin-bottom: 100px;
}

a.page_link_row_item {
	display: inline-flex;
	background: white;
	color: initial;
	border-radius: 10px;
	flex-direction: column;
	width: 260px;
	text-decoration: none;
	padding: 10px 20px;
	position: relative;
}

a.page_link_row_item:hover {
	background: #fff8ef;
}

.page_link_row_item_icon {
	width: 58px;
}

.page_link_row_item_title {
	font-size: 34px;
	/* font-family: 'Dar'; */
	text-decoration: none;
	font-weight: bold;
}

.page_link_row_open_arrow_icon {
	width: 24px;
	height: 24px;
	background: url('/images/icons/open_arrow.svg') center center no-repeat;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	top: 20px;
	right: 20px;
}


@media (max-width: 800px) {

	
	.page_links_row {
		flex-direction: column;
	}

	.page_link_row_item {
		width: 100%;
	}
}

.homepage_hero_image.our_story_image_box {
	margin-left: -350px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    /* CSS */

	.homepage_splash_center{
		/* transform: scale(.75); */
	}
}


@media (max-width: 1600px) {

	.homepage_splash_center{
		transform: scale(.80);
	}

	.homepage_bubble_menu{
		gap: 10px;
	}

	.homepage_bubble_menu_item_box{
		/* padding: 0px 20px; */
	}

	.homepage_bubble_menu_item_title{
		font-size: 22px;
	}

	.homepage_bubble_menu_item{
		/* width: 320px; */
	}
}


@media (max-width: 1200px) {
	.homepage_splash_center{
		transform: scale(.60);
	}
}


@media (max-width: 900px) {

	.homepage_splash_center{
		transform: scale(1);
	}

	.homepage_bubble_menu{
		gap: 10px;
		display: grid;
		top: -50px;
		grid-template-columns: auto auto;
	}

	.homepage_splash_center{
		height: auto;
	}

	.homepage_bubble_menu_item_content{
		display: block !important;
		height: 300px;
	}
}


/* phone size */

@media (max-width: 600px) {
	section.homepage_hero.our_purpose{
		flex-direction: column;
		gap: 20px;
	}

	.homepage_hero_content{
		flex: 0 0 100%;
	}

	section.homepage_hero.our_story{
		flex-direction: column;
		gap: 0px;
	}

	.homepage_hero_image.our_story_image_box{
		margin-left: 0px;
		flex: 0 0 100%;
		padding: 0px 20px;
	}

	img.our_story_image{
		height: auto;
		width: 100%;
	
		/* mask fade top */
		-webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%);
		mask-image: linear-gradient(to bottom, transparent 0%, black 15%);
	}

	.homepage_bubble_menu{
		flex-direction: column;
		gap: 10px;
		display: flex;
	}

	.homepage_splash_center{
		height: auto;
		transform: scale(1);
		margin-bottom: -60px;
	}

	.homepage_bubble_menu_item_content{
		height: auto !important;
		display: block;
	}
}

.center_text.drop_us_a_line {
	/* font-weight: bold; */
	font-size: 20px;
	line-height: 1;
}

h3.center_text.let_s_collaborate_subtitle {
	font-size: 22px;
	margin: 10px 0px;
	font-weight: normal;
	font-weight: bold;
	line-height: 1.4;
	text-align: left;
}

.news_article_content ul {
	font-size: 16px;
	font-family: 'Inter';
}

.section_with_border{
	border: 1px solid #bdbdbd;
	/* border-radius: 10px; */
	padding: 20px;
	background: white;
	padding-bottom: 0px;
}

.presented_by_gg{
	display: flex;
	flex-direction: column;
	gap: 0px;
	align-items: center;
	width: 100%;
	justify-content: center;
	margin-bottom: 38px;
	margin-top: -10px;
}

.presented_by_gg_logo_image{
	width: 192px;
}

.presented_by_gg_text {
	/* color: white; */
	font-size: 20px;
}

.presented_by_gg_logo_container {
	display: flex;
	gap: 35px;
	justify-content: center;
	align-items: center;
	margin-top: -22px;
}

img.presented_by_gg_logo_image.onwardops_logo {
	margin-top: 36px;
	/* width: 180px; */
}

@media (max-width: 600px) {
	.presented_by_gg_logo_container {
		flex-direction: column;
		margin-top: 20px;
	}
}

h2.section_heading.orange_text {
	color: #ffa500;
}

.partner_block {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	margin-bottom: 28px;
	margin-top: 10px;
	/* border: 1px solid gray; */
	padding: 20px;
	background: white;
}

.partner_logo {
	width: 160px;
}

p.partner_description {
	font-size: 15px;
}


/* admin page */

.admin-section {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	margin: 20px 0;
	width: 620px;
	max-width: 100%;
	}
  
  .form-group {
	margin: 20px 0;
  }
  
  .form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
  }
  
  .form-group input {
	width: 100%;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
  }

form button {
	outline: none;
	border: none;
	font-family: 'Inter';
	padding: 5px 18px;
	background-image: url(/images/Orange_button_bg.png);
	color: white;
	border-radius: 15px;
	cursor: pointer;
}

form button:hover {
	filter: brightness(1.1);
}

.admin-controls {
	margin-bottom: 1.5rem;
  }
  
.admin-controls a {
	display: inline-block;
	margin-right: 1rem;
}

.admin-controls .button:hover {
background-color: #c82333;
}

.button.gg_form_button {
	font-size: 22px;
}

img.gg_form_button_icon {
	margin-left: 12px;
}

img.gg_calendar_icon {
	margin-right: 5px;
	width: 16px;
}

.html_iframe{
	min-height: 800px;
	height: 90vh; /* Makes the iframe take up 90% of the viewport height */
	width: 100%;
	border: none;
	overflow-y: auto;
	border-radius: 10px;
	padding: 10px;
	background: white;
}

.footer_links {
	display: flex;
	gap: 10px;
	justify-content: center;
	font-size: 18px;
}

.community_partner_item {
	display: inline-flex;
}

.community_partners_container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-top: 20px;
	/* margin: 0px -50px; */
}

img.community_partner_logo {
	border-radius: 5px;
	/* min-height: 170px; */
	max-width: none;
	max-height: 160px;
}

img.small_social_icon {
	width: 26px;
	height: 26px;
}

.social_links_box {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.committee_profile_card {
	width: 200px;
	height: 305px;
	display: flex;
	flex-direction: column;
	background: white;
	cursor: pointer;
	position: relative;
}

.committee_group_members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

@media (max-width: 600px) {
  .committee_group_members {
    grid-template-columns: 1fr;
  }
}

.committee_group {
	width: 100%;
	margin-top: 20px;
}

h3.committee_card_name {
	font-size: 22px;
	padding-top: 6px;
	max-width: 180px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 20px;
}

.committee_card_name.long {
	font-size: 17px;
}

.committee_card_title {
	color: gray;
	font-size: 15px;
	font-weight: 200;
	max-width: 180px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.committee_card_title.long {
	font-size: 12px;
}

.committee_profile_card_header {
	padding: 5px 10px;
	height: 60px;
}

.read_more_btn {
	background: linear-gradient(45deg, #FFAB00, #ff8100);
	color: white;
	font-size: 17px;
	/* font-weight: 600; */
	display: flex;
	justify-content: space-between;
	padding: 0px 10px;
	height: 47px;
	align-items: center;
	position: absolute;
	bottom: 0px;
	width: 100%;
	transition: height 0.3s ease-out;
	overflow: hidden;
}

img.committee_card_image {
	height: 200px;
	width: 200px;
	object-fit: cover;
}

h3.committee_group_title {
	font-size: 22px;
	margin: 20px 0px;
}

#profile-overlay-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    background: rgba(0,0,0,0);
    transition: background 0.4s ease;
    backdrop-filter: blur(0px) brightness(1);
    transition: backdrop-filter 0.3s ease-out;
    /* overflow: hidden; */ /* Hide scrollbars but maintain scroll position */
}

#profile-overlay-container.active {
    background: rgba(0,0,0,0.5);
}

.overlay-wrapper {
    position: relative;
    width: 100%;
    height: 200%; /* Make wrapper twice as tall to accommodate margin offset */
    pointer-events: none;
}

.blur_background#profile-overlay-container{
	backdrop-filter: blur(3px) brightness(0.7);
	pointer-events: initial;
}

.profile-card-clone {
    pointer-events: auto;
    /* border-radius: 8px; */
    overflow: hidden;
}

.profile-close-btn {
    position: absolute;
    top: 20px;
    right: -50px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
    background: url(/images/icons/open_arrow.svg) center center no-repeat;
    transform: rotate(-135deg);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease, right 0.3s ease 0.2s;
}

.clone_open .profile-close-btn {
	right: 20px;
}

.profile-close-btn:hover {
     transform: rotate(-135deg) translateX(5px) translateY(-5px);
}

.profile-card-clone.clone_open .read_more_btn {
	height: 7px;
}


 .read_more_btn>span,.read_more_btn>i {
	opacity: 1;
	transition: opacity 0.2s ease;
}
.profile-card-clone.clone_open .read_more_btn>span,.profile-card-clone.clone_open .read_more_btn>i {
	opacity: 0;
}

.committee_profile_card_column {
	position: relative;
	display: flex;
	flex-direction: row;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

p.committee_card_bio {
	width: 480px;
	font-size: 14px;
	line-height: 1.5;
	margin-top: 89px;
	/* max-width: 100%; */
}

.committee_profile_card_detailed_info {
	width: 0px;
	overflow: hidden;
	transition: width 0.2s ease-out 0s;
}

.clone_open .committee_profile_card_detailed_info {
	width: 480px;
	transition: width 0.3s ease-out 0.15s;
	max-width: 100%;
}

div.committee_profile_card_base_info {
	padding: 0px;
	transition: padding 0.3s ease-out;
}

.clone_open div.committee_profile_card_base_info {
	padding: 20px;
	/* transition: padding 0.3s ease-out 0.3s; */
}

.committee_card_media{
	position: absolute;
	bottom: 0px;

	padding: 20px 0px;

	overflow: hidden;
}

.committee_card_media_item{
	width: 170px;
	height: 110px;
	background: rgb(241 241 241);
	border-radius: 5px;
	position: relative;
	transform: translateY(120%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.committee_card_media_item_icon{
	width: 100%;
	height: 100%;
	background: url('/images/play_icon.png') center center no-repeat;
	position: absolute;
	background-size: 42px;
	background-position: center;
}

/* delay showing each media item */

.clone_open .committee_card_media_item{
	transform: translateY(0%);
	transition: transform 0.3s ease-out 0.1s;
}

.clone_open .committee_card_media_item:nth-child(1){
	transition-delay: 0.3s;
}

.clone_open .committee_card_media_item:nth-child(2){
	transition-delay: 0.45s;
}

.clone_open .committee_card_media_item:nth-child(3){
	transition-delay: 0.6s;
}




.committee_card_media_item_container {
		display: flex;
	/* width: 100%; */
	justify-content: center;
		gap: 20px;
}

.committee_card_media_label {
	font-size: 20px;
	margin-bottom: 10px;
	color: gray;
	opacity: 0;
	/* transform: translateY(10px); */
	transition: opacity 0.3s ease-out 0s;
}

.clone_open .committee_card_media_label {
	opacity: 1;
	transition: opacity 0.3s ease-out 0.4s;
}


.committee_group {}

.container_content.committee_page {
	margin-bottom: 200px;
}

.committee_page_content {
	margin-bottom: 200px;
}

/* phone */

@media (max-width: 600px) {
	.committee_group_members{
		flex-direction: column;
	}

	.committee_profile_card_column{
		flex-direction: column;
	}

	p.committee_card_bio{
		margin-top: 0px;
		margin: 0px 10px;
		width: calc(100% - 20px);
	}

	.committee_card_media{
		opacity: 0;
		margin: 10px;
	}


}

.archive_notice {
  background: #ffde76;
  border: 1px solid #ffeeba;
  color: #856404;
  padding: 12px 20px;
  border-radius: 5px;
  margin: 20px 0;
  text-align: center;
  font-family: 'Inter';
  font-size: 16px;
}

.button>div {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 5px;
}

.news_article_type {
	display: inline-flex;
	background: orange;
	/* border-radius: 25px; */
	padding: 0px 10px;
	padding-top: 4px;
	font-size: 12px;
}

a.download-paper-btn {
	background: #ffa500;
	border-radius: 5px;
	padding: 11px 17px;
	color: white;
	text-decoration: none;
}

a.download-paper-btn:hover {
	background: #ff8d2b;
}

.section_wide {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 20px;
  overflow: visible;
}

.three_column_container {
  display: grid;
  grid-template-columns: repeat(3, 400px);
  gap: 30px;
  margin: 40px 0;
  width: 100%;
  justify-content: center;
}

.three_column_item {
  width: 400px;
}

.video_wrapper {
  position: relative;
  width: 400px;
  height: 225px; /* 16:9 ratio for 400px width */
  overflow: hidden;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  min-width: 180px;
}

@media (max-width: 900px) {
  .three_column_container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .video_wrapper {
    height: 250px;
  }
}

.video_list_section {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 20px;
  overflow: visible;
}

.video_list_container {
  display: grid;
  grid-template-columns: repeat(3, 400px);
  gap: 30px;
  margin: 40px 0;
  width: 100%;
  justify-content: center;
}

.video_list_item {
  width: 400px;
}

.video_wrapper {
  position: relative;
  width: 400px;
  height: 225px; /* 16:9 ratio for 400px width */
  overflow: hidden;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  min-width: 180px;
}

@media (max-width: 1300px) {
  .video_list_container {
    grid-template-columns: repeat(3, 350px);
  }
  
  .video_list_item {
    width: 350px;
  }
  
  .video_wrapper {
    width: 350px;
    height: 197px; /* 16:9 ratio for 350px width */
  }
}

@media (max-width: 900px) {
  .video_list_container {
    grid-template-columns: 400px;
    gap: 30px;
  }
  
  .video_list_item {
    width: 400px;
  }
  
  .video_wrapper {
    width: 400px;
    height: 225px;
  }
}

.video_list_section {
  padding: 40px 0px;
  overflow: visible;
  /* background-image: url(/images/Blue_B_splash_c.jpg); */
  /* background-size: cover; */
  /* background-position: center center; */
  width: 100%;
  height: 100%;
  background: #e0e0ee;
}

.video_list_section.full_width {
  max-width: none;
  /* padding: 0; */
}

.video_list_container {
  display: grid;
  grid-template-columns: repeat(3, 600px);
  gap: 40px;
  margin: 0;
  width: 100%;
  justify-content: center;
}

.video_list_item {
  width: 600px;
}

.video_wrapper {
  position: relative;
  width: 600px;
  height: 338px; /* 16:9 ratio for 600px width */
  overflow: hidden;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video_wrapper.thumbnail_wrapper {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.video_wrapper.thumbnail_wrapper:hover {
  transform: scale(1.02);
}

.video_thumbnail {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.play_button_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  z-index: 1;
  cursor: pointer;
}

.watch_text {
  color: white;
  font-size: 18px;
  margin-top: 10px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.video_wrapper:hover .play_button_overlay {
  background: rgba(0, 0, 0, 0.5);
}

.video_wrapper:hover .watch_text {
  opacity: 1;
  transform: translateY(0);
}

.play_button {
  width: 80px;
  height: 80px;
  opacity: 0;
  transition: all 0.2s ease;
  transform: scale(0.9);
}

.video_wrapper:hover .play_button {
  opacity: 0.9;
  transform: scale(1.1);
}

.video_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
}

.video_modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video_modal_content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16/9;
}

.video_modal_close {
  position: absolute;
  top: -30px;
  right: -30px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

.video_modal_iframe_container {
  width: 100%;
  height: 100%;
}

.video_modal_iframe_container iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .watch_text {
    font-size: 16px;
  }
  
  .video_modal_content {
    width: 95%;
  }
}

.video_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

.video_wrapper:hover iframe {
  pointer-events: none;
}

.video-instructions .video-id {
	background: #00000021;
	padding: 1px 4px;
	border-radius: 5px;
}

p.video-instructions {
	line-height: 1.6;
}

/* --- Video List Responsive Layout --- */
.video_list_container {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.video_list_item.thumbnail {
  width: 100%;
  max-width: 320px;
}

.video_list_item.active {
  width: 100%;
  max-width: 560px;
  z-index: 2;
}

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

.video_list_item.thumbnail .video_wrapper {
  width: 100%;
  max-width: 320px;
  height: 180px;
}

.video_list_item.active .video_wrapper {
  width: 100%;
  max-width: 560px;
  /* height: 315px; */
}

/* Ensure video_wrapper doesn't override these sizes */
.video_wrapper {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

@media (max-width: 1200px) {
  .video_list_container {
    max-width: 100vw;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 16px;
  }
  .video_list_item.active .video_wrapper {
    max-width: 420px;
    height: 236px;
  }
  .video_list_item.thumbnail .video_wrapper {
    max-width: 200px;
    height: 112px;
  }
}

@media (max-width: 900px) {
  .video_list_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .video_list_item.active {
    order: 1;
    max-width: 100vw;
    width: 100%;
  }
  .video_list_item.thumbnail {
    order: 2;
    max-width: 100vw;
    width: 100%;
    margin-bottom: 12px;
  }
  .video_list_item .video_wrapper {
    max-width: 100vw;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .video_list_item.thumbnail .video_wrapper,
  .video_list_item.thumbnail .video_wrapper.thumbnail_wrapper {
    aspect-ratio: 16/9;
    width: calc(100% - 30px);
    height: auto;
    min-height: 0;
    min-width: 0;
    position: relative;
    max-width: none;
  }
  .video_list_item.thumbnail .video_thumbnail {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
  }
}

.committee_card_name.colonel_name {
  font-size: 14px;
}

.committee_card_media_item_container {
		display: flex;
	/* width: 100%; */
	justify-content: center;
		gap: 20px;
}

.committee_card_linkedin {
	display: flex;
	justify-content: center;
	margin-top: 10px;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.3s ease-out 0.2s;
}

.clone_open .committee_card_linkedin {
	opacity: 1;
	transform: translateY(0);
}

.committee_card_linkedin img {
	width: 24px;
	height: 24px;
	transition: transform 0.2s ease-out;
	filter: grayscale(1);
}

.committee_card_linkedin:hover img {
	transform: scale(1.1);
	filter: grayscale(0);
}

.hero {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

#hero-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.main_menu_submenu_wrapper:hover .sub_menu_box {
  display: block;
}
