
html
{
	margin: 0;
	padding: 0;
	font-family: Arial,Verdana,sans-serif;
	font-size: 5vw;
	font-weight: normal;
	color: black;
	line-height: 1.5;
	background-color: black;
}
@media only screen and (orientation: landscape) {
	html
	{
		font-size: 2vw;
	}
}

body{
	margin: 0;
}

body, a, table, input, select, textarea, button { font:inherit; }

/*-------- --------*/
p {
	margin: 0.5em 0 1em 0;
}

a {	
	color: #F0E68C;
	text-decoration: none;
}
@media only screen and (orientation: landscape) {
	.ss_light * a {
		color: #b35919;
	}
}

a[href^="tel"]{
    color:inherit;
    text-decoration:none;
}

h1 {
	font-size: 1.5rem;
	font-weight: bold;
	color: maroon;
	margin: 1rem 0 0.5rem 0;
}
@media only screen and (orientation: landscape) {
	h1 {
		font-size: 1.8rem;
		margin: 1rem 0 1rem 0;
	}
}

h2 {
	font-size: 1.25rem;
	font-weight: bold;
	color: #fa5f1d;
	margin-top: 1rem;
	margin-bottom: 0.25rem;
}

@media only screen and (orientation: landscape) {
	.ss_light * h2 {
		color: #687999;
	}
}

/*-------- --------*/
.hr1 {
	border:0; 
	height:1px; 
	color: #8ba2cc; 
	margin: 0.4rem 0;
	background-color:#8ba2cc;
}

label {
	color: #adcaff;
}

.disabled { 
	opacity: 0.3;
	color: white;
}

/*-------- header --------*/
header {
	position: sticky;
	top: 0;
	z-index: 1;
	box-shadow: 0 2px 4px -1px rgba(0,0,0,.3),0 4px 5px 0 rgba(0,0,0,.2),0 1px 10px 0 rgba(0,0,0,.12);
}

#hd_nav {
	position: relative;
	height: 3.5rem;
	width: 100%;
	z-index: 1;
	background-color: #73202d;
	/*font-size: 0.8rem;*/
}
@media only screen and (orientation: landscape) {
	#hd_nav {
		height: 2rem;
	}
}

#hd_row {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	border-bottom: 1px solid #cc394f;
}

.hd_row_item {
	position: relative; /* for dropdown-content alignment*/
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0px 1rem;
	overflow: visible;
	font-weight: bold;
	text-decoration: none;
	/*letter-spacing: .1rem;*/
	color: white;
	cursor: pointer;
	transition: background-color .3s;
}

.hd_row_item::after {  
	content: " ";
	position: absolute;
	z-index: -1;
	top: 0; right: 0; bottom: 0; left: 0;
	inset: 0 0 0 0;
	display: block;
	background: #521720;
	transition: transform .3s ease;
	transform: scaleY(0);
	transform-origin: top left;
}

.hd_row_item:hover::after {
	transform: scaleY(1);
	transform-origin: top left;
}

.hd_space_grow {
	flex-grow: 1;
}

#hd_icon_menu {
	height: 2rem;
	width: 2rem;
}
@media only screen and (orientation: landscape) {
	#hd_icon_menu {
		height: 1.2rem;
		width: 1.2rem;
	}
}

#hd_icon_logo {
	height: 1.8rem;
	/*filter: invert(52%) sepia(90%) saturate(611%) hue-rotate(356deg) brightness(96%) contrast(112%);*/
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(105%) contrast(103%);
}
@media only screen and (orientation: landscape) {
	#hd_icon_logo {
		height: 1.2rem;
	}
}


#hd_menu_cover {
	position: fixed; 
	width: 100%;
	height: 100%;
	top: 0; 
	left: 0; 
	z-index: 4;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	/*background: rgba(255, 255, 255, 0.3);*/
}

#hd_menu_box {
	position: fixed; 
	width: 80vw;
	height: 80vw;
	/*aspect-ratio: 1; */
	top: 50%; 
	left: 50%; 
	transform: translate(-50%, -50%); 
	background-color: #47141c; 
	border: solid 0.2rem white;
	border-radius: 8vw; 
	box-shadow: rgba(0, 0, 0, 0.75) 0 0 3rem 0;
	font-size: 4vw;
	/*box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;*/
}
@media only screen and (orientation: landscape) {
	#hd_menu_box {
		width: 40vw;
		height: 40vw;
		border-radius: 3vw; 
		font-size: inherit;
	}
}

#hd_menu_grid_container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: grid;
	grid-template-columns: auto auto auto;
	margin: 0rem;
	padding: 0;
	width: 95%;
	height: 95%;
	gap: 0 0;
}

.hd_menu_grid_cell {
	position: relative;
	/*border: 1px solid yellow;*/
	padding: 2vw;
	display: flex;
	justify-content: center;	
}
.hd_menu_item {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	/*border: solid 1px red;*/
	text-align: center;
	/*color: #adcaff;*/
}
.hd_menu_item_img {
	height: 13vw;
}
@media only screen and (orientation: landscape) {
	.hd_menu_item_img {
		height: 6vw;
	}
}

/*-------- footer --------*/
footer {
	background-color: black;
	padding-top: 1rem;
	border-top: 1px solid #8ba2cc;
	font-size: 3.5vw;
}
@media only screen and (orientation: landscape) {
	footer {
		font-size: 1.5vw;
	}
}
.footer {
	display: table; 
	width:95%; 
	margin: 0 auto;
	color: white;
}
.footer_nav {
	display: flex; 
	flex-flow: row wrap; 
	gap: 2vw 4vw; 
	background-color: black;
}
.footer-link {
	/*color: #adcaff;*/
	white-space: nowrap;
}

.footer-link:before {
	content: "\2022";
	color: white;
	margin-right: 0.2em;
}
.footer-icon {
	width: 12vw;
	height: 12vw;
}
@media only screen and (orientation: landscape) {
	.footer-icon {
		width: 5vw;
		height: 5vw;
	}
}

/*-------- index --------*/
/*
#home_top_bkgr_div {
	width: 100vw; 
	height: 100vh; 
	overflow: hidden; 
	position: fixed; 
	top: 0; 
	left: 0; 
	z-index: -3;
}

#home_top_bkgr_img {
	height: 100vh; 
	object-fit: contain; 
	position: absolute; 
	top: 50%; left: 50%; 
	transform: translateX(-50%) translateY(-50%);
}
*/
/* l
width: 100vw; object-fit: contain;
*/

#home_top_bkgr_div {
	width: 100vw; 
	height: 100vh; 
	overflow: hidden; 
	position: fixed; 
	top: 0; 
	left: 0; 
	z-index: -3;
	background-image: url(/img/home-header-bkgr-h.webp);
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center 0;
}

@media only screen and (orientation: landscape) {
	#home_top_bkgr_div {
		background-image: url(/img/home-header-bkgr-w.webp);
	}
}

#home_top_img_title {
	width:95%;
	height:auto;
	display:block;
	position:absolute;
	left:0;
	right:0;
	top:13%; 
	margin:auto; 
	z-index: -2; 
	opacity: 0; 
	transition: opacity 1.5s linear 0.25s;
}
@media only screen and (orientation: landscape) {
	#home_top_img_title {
		width:60%;
		top:8%; 
	}
}

#home_top_security_div {
	width: 100vw; 
	height: 100vh; 
	overflow: hidden; 
	position: fixed; 
	top: 0; 
	left: 0; 
	z-index: -2;
}

#home_top_security_img {
	width: 120vw; 
	height: auto; 
	position: absolute; 
	left: auto;
	right: 0; 
	bottom: 0;

}
@media only screen and (orientation: landscape) {
	#home_top_security_img {
		height: 55vh; 
		width: auto;
		left: 0;
		right: auto; 
	}
}

#home_top_bubble_div {
	width: 100vw; 
	height: 100vh; 
	overflow: hidden; 
	position: fixed; 
	top: 0; 
	left: 0; 
	z-index: -1;
}
#home_top_bubble_img {
	height: 50vw; 
	width: auto;
	position: absolute; 
	right: 2vw; 
	top: 39%; 
	bottom: auto;
	transform: translate(0, 100%) scale(0); 
	transition: transform 0.5s cubic-bezier(0, 1.4, 1, 1) 1s;
}
@media only screen and (orientation: landscape) {
	#home_top_bubble_img {
		height: 50vh; 
		right: 5vh; 
		top: auto;
		bottom: 5vh;
	}
}

.home_ss {
	width:95%;
	margin: 0 auto;
	padding: 0 0 2rem 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	column-gap: 2rem;
}
@media only screen and (orientation: landscape) {
	.home_ss {
		width: auto;
		margin:0; 
		padding: 3rem 2rem;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
	}
}
.ss_dark {
	background-color: transparent; 
	color: white;
}
@media only screen and (orientation: landscape) {
	.ss_dark {
		background-color: #374051; 
		color: white;
	}
}
.ss_light {
	background-color: transparent; 
	color: white;
}

@media only screen and (orientation: landscape) {
	.ss_light {
		background-color: white; 
		color: black;
	}
}

.home_ss_title_p {
	display: block;
}
.home_ss_title_l {
	display: none;
}
@media only screen and (orientation: landscape) {
	.home_ss_title_p {
		display: none;
	}
	.home_ss_title_l {
		display: block;
	}
}

.home_ss_img {
	width:100%;
	height: auto;
	/* padding-top: 0.5rem; */
}
@media only screen and (orientation: landscape) {
	.home_ss_img {
		width:40vw; 
		/* padding: 0 2rem 0 0 */
	}
}

.ss_light > .home_ss_img {
	order: 1;
}
.ss_light > .home_ss_content {
	order: 2;
}
.ss_dark > .home_ss_img {
	order: 1;
}
.ss_dark > .home_ss_content {
	order: 2;
}
@media only screen and (orientation: landscape) {
	.ss_light > .home_ss_img {
		order: 1;
	}
	.ss_light > .home_ss_content {
		order: 2;
	}
	.ss_dark > .home_ss_img {
		order: 2;
	}
	.ss_dark > .home_ss_content {
		order: 1;
	}
}

/*-------- features --------*/
.ol-1 {
	margin: 0; 
	padding-left: 1.5em;
}
.ol-1 > li {
	padding-top: 1em;
}
@media only screen and (orientation: landscape) {
	.ol-1 > li {
		padding-top: 0.5em;
	}
}
.ul-2 {
	list-style:disc; 
	margin: 0; 
	padding-left: 1em;
}

#content {
	display: table;
	padding: 0 2.5%;
	background-color: white;
}

.img_illu_right {
	float: right; 
	width: 98%;
	height: auto;
	margin: 0.5rem auto;
}
@media only screen and (orientation: landscape) {
	.img_illu_right {
		width:30vw;
		margin: 0 0 1rem 1rem;
	}
}
.img_illu_left {
	float: left; 
	width: 98%;
	height: auto;
	margin: 0.5rem auto;
}
@media only screen and (orientation: landscape) {
	.img_illu_left {
		width:30vw;
		margin: 0 1rem 1rem 0;
	}
}
/*-------- wiki --------*/
.anchor {
	padding-top: 4rem; /* #hd_nav height = 3.5rem */
    margin-top: -4rem;
}

/*-------- button-89 --------*/
.button-89 {
	--b: 0.12em;   /* border thickness */
	--s: .5em; /* size of the corner */
	--color: green;
	
	padding: calc(.5em + var(--s)) calc(.9em + var(--s));
	color: var(--color);
	--_p: var(--s);
	background:
	  	conic-gradient(from 90deg at var(--b) var(--b),#0000 90deg,var(--color) 0)
	  	var(--_p) var(--_p)/calc(100% - var(--b) - 2*var(--_p)) calc(100% - var(--b) - 2*var(--_p));
	transition: .1s linear, color 0s, background-color 0s;
	/*outline: var(--b) solid #0000;*/
	/*outline-offset: .6em;*/
	border: 0;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	cursor: pointer;
  }
  
  .button-89:hover,
  .button-89:focus-visible{
	--_p: 0px;
	/*outline-color: var(--color);*/
	/*outline-offset: .05em;*/
  }
  
  .button-89:active {
	background: var(--color);
	color: #fff;
  }
  
/*-------- button-92 --------*/
.button-92 {
	--_p: 100%;
  	background: 
  		linear-gradient(90deg, #0000 33%, #fff5, #0000 67%) var(--_p)/300% no-repeat, 
		#73202d; /* background color #47141c */
  	color: white;
  	border: solid 0.2em #cc394f; /*  #cc394f  #47141c */
  	transform: perspective(10em) rotateY(calc(20deg*var(--_i)));
  	outline-offset: .1em;
  	transition: 0.3s;
	margin: 0;
	cursor: pointer;
	padding: .2em .8em;
}
.button-92-left {
	--_i: -1;
	transform-origin: 100% 50%;
	margin-right: 0.1em;
}
.button-92-right {
	--_i: 1;
	transform-origin: 0% 50%;
	margin-left: 0.1em;
}
.button-92-middle {
	--_i: 0;
	transform-origin: 50% 50%;
	background: 
	linear-gradient(90deg, #0000 33%, #fff5, #0000 67%) var(--_p)/300% no-repeat, 
		#521720;
	padding: .2em .3em;
	cursor: default;
}

.button-92:hover,
.button-92:focus-visible {
  	--_p: 0%;
  	--_i: 0;
}

/*-------- button-92 --------*/
#upgg_logo {
	display: block; 
	overflow: auto; 
	width: 40vw; 
	height: auto; 
	margin: 0 auto;	
}
@media only screen and (orientation: landscape) {
	#upgg_logo {
		width: 20vw; 
	}
}
