/* COLOR CONSTANTS */
:root {
    --linkActive: #F17D1F;
    --linkHover: #F7BC19;
	--linkPassive: #D8E0EE;
	--menuBGColor: #152531;
	--menuBGColorHover: #396485;
	--menuBGColorActive: #0E1922;
	--textColor: #27455D;
	--activePage: #FBEBC1;
}


/* GLOBAL */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
	height: 100%;
    background-color: white;
    font-family: "Poppins", sans-serif;
	min-width: 450px;
}

A {text-decoration: none;}
A:hover {text-decoration: none;}

A.textlink {
	color: var(--linkActive);
	text-decoration: underline;
}

A.textlink:hover {
	color: var(--linkHover);
}

A.textlink:visited {
	text-decoration: none;
}

B.highlight {color: var(--linkActive);}

H1 {
	font-size: 1.6em;
	color: var(--linkActive);
	margin-top: 8px;
}

H1 SPAN {font-size:0.8em;}



/* HEADER, WRAPPER, FOOTER, CONTENTS */
div.wrapper {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -45px; /* the bottom margin is the negative value of the footer's height */
}
div.footer, .push {
	height: 35px; /* .push must be the same height as .footer */
}

div.contents{
	padding: 30px 30px 40px 30px;
}

header{
    box-shadow: 1px 1px 5px 0px #525F74;
    position: sticky;
    top: 0;
    width: 100%;
	min-height: 75px;
}

footer{
	color: var(--linkPassive);
	margin-top: 10px;
	padding: 10px 0px 10px 0px;
	height: 35px;
}
footer a{color: var(--linkPassive);}
footer a:hover{color: var(--linkHover); text-decoration: none;}


IMG.pageIcon {
	position: absolute;
	right: 20px;
	z-index: -1;
}

/* MENU BAR */
header ul{
    list-style: none;
}

.dotDesign {
    background-color: var(--menuBGColor);
    background-image: -webkit-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
	background-size: 3px 3px;
}

.menulogo{
	width: 303px;
	height: auto;
	margin-top: 10px;
	margin-left: 10px;
}
@media (max-width: 450px) {
	.menulogo{
		width: 250px;
		height: auto;
		margin-top: 12px;
	}
}

a .mainLink{
	font-weight: bold;
	font-size: 13.5pt;
	letter-spacing: 1.5px;
}
a .subLink{
	font-size: 12pt;
}

.menu a{
	display: block;
    padding: 10px;
    color: var(--linkPassive);
	transition: .5s;
}

/* NAV MENU - MOBILE */
.nav{
	width: 100%;
    height: 100%;
    position: fixed;
	top: 70px;
    background-color: var(--menuBGColor);
    overflow: hidden;

}
.menu a:hover{
    background-color: var(--menuBGColorHover);
	color: var(--linkHover);
	text-decoration: none;
}
.menu .activePage{
	background-color: var(--menuBGColorActive);	
	color: var(--linkActive);
	
}
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}

.nav .mobileonly {
	display: inherit;
}

/* NAV MENU - DESKTOP */
@media (min-width: 1200px) {
    header .nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
		height: 80px;
    }
    header .menu {
		margin-top: -15px;
	}
	header .menu li{
        float: left;
		padding-left: 0px;
		padding-right: 0px;
		margin-left: -10px;
    }
	header .menu a {
		padding: 20px;
	}
    header .menu a:hover{
        background-color: transparent;
        color: var(--linkHover);
		text-decoration: none;
    }
    header .menu .activePage{
        background-color: transparent;
        color: var(--linkActive);
    }
    header .hamb{
        display: none;
    }
	header a .subLink{
		font-size: 10pt;
	}
	.nav .mobileonly {
		display: none;
		border: 1px solid red;
	}
}

/* MENU ICON ("hamburger") */
.hamb{
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}
.hamb-line {
    background: white;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
}
.hamb-line::before,
.hamb-line::after{
    background: white;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
}
.side-menu:checked ~ nav{
    max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}
body:has(.side-menu:checked) {
  overflow: hidden;
}

div.center_contents {
	max-width: 700px;
	margin: auto;
	text-align: left;
	color: var(--textColor);
	margin-bottom: 15px;
	font-size: 1.2em;
}

/* CONTENTS STYLE: PAGE 0 - LANDING */
IMG.mainLogo {
	margin-top: -20px;
	margin-bottom: 20px;
	opacity: 0;
	transition: 3s;
	width: 360px;
	height: auto;

}

VIDEO.bgVid {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  /*opacity: 0.5;*/
}

DIV.sideLink {
	position: absolute;
	top: 80px;
	right: 0px;
	text-align: center;
	transform-origin: bottom right;
	transform: rotate(-90deg);
	color: white;
	padding: 5px 10px 5px 10px;
	display: none;
}

A.partnerLinkDesktop IMG {
	display: none;
	background-color: rgba(255,255,255,.5);
}

A.partnerLinkMobile IMG {
	display: block;
	border: 3px solid var(--linkActive);
	border-radius: 15px;
	width: 250px;
	height: auto;
	padding: 8px 8px 8px 8px;
	transition: .5s;
	margin: auto;
	margin-top: 20px;
}
A.partnerLinkMobile:hover IMG{
	border: 3px solid var(--linkHover);
	background-color: #F9E9C9;
	transition: .5s;
}

DIV.homeBottomText {
	text-align: center;
	padding: 15px 10px 15px 10px;
	font-size: 16pt; margin: auto;
	margin-bottom: 15px;
	font-size: 1.2em;
	font-weight: bold;
	background-color: rgba(255,255,255,.6);
	border-radius: 15px;
	width: 90vw;
	left: 5vw;
	transition: .3s;
}

DIV.sideFlyOut {
	display: none;
}


@media (min-width: 1200px) {
	div.center_contents {
		font-size: 1em;
	}
	IMG.mainLogo {
		width: 400px;
		height: auto;
	}
	DIV.homeBottomText {
		position: absolute;
		bottom: 30px;
		transition: .3s;
	}
	DIV.homeBottomText:hover {
		background-color: rgba(255,255,255,.8);
		transition: .3s;
	}
	DIV.sideLink {
		display: block;
	}
	
	A.partnerLinkMobile {
		display: none;
	}
	.sideLink A {
		color: var(--linkPassive);
		font-size: 12pt;
	}
	.sideLink A:hover {
		color: var(--linkHover);
		transition: .3s;
	}
	
	DIV.sideFlyOutButton {
		display: block;
		position: absolute;
		top: 100px;
		left: 0px;
		text-align: center;
		color: white;
		padding: 5px 10px 5px 10px;
		transition: .3s;
	}
	DIV.sideFlyOutText {
		display: block;
		position: absolute;
		top: 100px;
		width: 180px;
		left: -180px;
		color: white;
		padding: 5px 5px 5px 5px;
		transition: .3s;
		z-index: 99;
	}
	
}

BODY.landingBGOnly { 
  background: linear-gradient(rgba(255,255,255,.6), rgba(255,255,255,.6)), url('bgvidposter.jpg') no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* CONTENTS STYLE: PAGE 1 - 9 Ws */
TABLE.W_table {
	width: 98%;
}

.W_table TD.W_question {
	width: 140px;
	font-size: 14pt;
	font-weight: bold;
	color: white;
	height: 100px;
	padding: 0px 10px 0px 10px;
	border-bottom: 6px solid white;
}
.W_table TD.W_question:hover {
	font-size: 20pt;
	transition: .5s;
}

.W_question .extended {
	font-weight: normal;
	font-size: 12pt;
}

.colorA{
	background: rgba(106,32,94);
	background: linear-gradient(90deg, rgba(106,32,94,0.5494398442970938) 0%, rgba(242,131,40,1) 0%, rgba(241,125,31,1) 90%, rgba(224,234,242,1) 100%);
}

.colorB{
	background: rgba(106,32,94);
	background: linear-gradient(90deg, rgba(106,32,94,0.5494398442970938) 0%, rgba(21,37,49,1) 0%, rgba(21,37,49,1) 90%, rgba(224,234,242,1) 100%);
}

.colorAA{
	background: rgb(106,32,94);
	background: linear-gradient(90deg, rgba(106,32,94,0.5494398442970938) 0%, rgba(224,234,242,0.4) 0%, rgba(224,234,242,0.4) 98%, rgba(241,125,31,1) 100%); 
}

.colorBB{
	background: rgb(106,32,94);
	background: linear-gradient(90deg, rgba(106,32,94,0.5494398442970938) 0%, rgba(224,234,242,0.4) 0%, rgba(224,234,242,0.4) 98%, rgba(21,37,49,1) 100%); 
}

.W_table TD.W_contents {
	padding: 10px 15px 10px 10px;
	color: var(--textColor);
	border-bottom: 6px solid white;
}


/* CONTENTS STYLE: PAGE 2 - JOURNEY */
TABLE.flowtable {
	width: 100%;
}

@media (min-width: 900px) {
	TABLE.flowtable {
		width: 850px;
		margin: auto;
	}

}
TD.flowarrow {
	background: url('flowarrow.png');
	background-repeat: repeat-y;
	width: 30px;
}
/*TD.flowdot {
	width: 30px;
	vertical-align: top;
	padding-top: 4px;
}*/


TD.flowtitle {
	font-weight: bold;
	font-size: 14pt;
	vertical-align: top;
	height: 30px;
	color: var(--linkActive);
}

TD.flowtitle IMG {
	margin-right: 10px;
}

TD.flowcontents {
	padding: 0px 6px 15px 30px;
	vertical-align: top;
	color: var(--textColor);
}


/* CONTENTS STYLE PAGE 3 - INSPIRATION */
DIV.inspFlexBox {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-content: space-between;
}

.inspFlexBox DIV {
	background-color: white;
	width: 210px;
	min-height: 220px;
	margin: 5px 5px 5px 5px;
	padding: 5px 5px 5px 5px;
	text-align: center;
}
.inspFlexBox DIV IMG {
	border: 2px solid var(--linkActive);
	border-radius: 10px;
	width: 160px;
	height: auto;
	margin-bottom: 5px;
}

.inspFlexBox DIV A {
	/* used in partner page */
	color: var(--textColor);
	transition: .3s;
}
.inspFlexBox DIV A:hover {
	color: var(--linkActive);
	transition: .3s;
}

@media (max-width: 600px) {
	.inspFlexBox DIV {
		width: 180px;
	}
	.inspFlexBox DIV IMG {
		width: 120px;
		height: auto;
	}
}

/* CONTENTS STYLE PAGE 4 - SERVICE */
DIV.service_row {
	min-height: 70px;
	clear: all;
	margin-top: 7px;
	margin-bottom: 7px;
}

DIV.service_row IMG {
	width: 40px;
	height: auto;
	transition: .5s;
}

DIV.service_row:hover IMG {
	width: 50px;
	height: auto;
	transition: .5s;
}

DIV.service_icon {
	display: table-cell;
	min-width: 65px;
	min-height: 70px;
	line-height: 70px;
	font-size: 12pt;
	transition: .5s;
	vertical-align: middle;
	text-align: center;

}

DIV.service_text {
	width: 500px;
	height: 70px;
	display: table-cell;
	vertical-align: middle;
	padding-left: 20px;
	font-size: 1.2em;
}

HR.service_hr {
	border: 0px;
	background-color: #7BA5C7;
	height: 2px;
	max-width: 570px;
}


/* CONTENTS STYLE PAGE 5 - MONEY */
UL.list {
	margin-left: 20px;
}
UL.list li::marker {
  color: var(--linkActive);
}

/* CONTENTS STYLE: PAGE 6 -FAQ */
div.faq_q{
	font-style: italic;
	font-size: 13pt;
	font-weight: bold;
	color: var(--linkActive);
}
div.faq_a{
	margin-bottom: 15px;
	color: var(--textColor);
}

/* CONTENTS STYLE: PAGE 7 - IoT */

DIV.iotFlexBox {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--linkActive);
	margin-bottom: 10px;
}

.iotFlexBox DIV.iotCaption {
	background-color: var(--linkActive);
	color: white;
	font-size: 1.2em;
	font-weight: bold;
	padding: 3px 3px 3px 3px;
	text-align: center;
}

.iotFlexBox DIV.iotImg {
	width: 100%;
	text-align: center;
	margin-bottom: 3px;
}
.iotFlexBox DIV.iotDescr {
	width: 100%;
	text-align: center;
}


@media (min-width: 900px) {
	DIV.iotFlexBox {
		display: flex;
		flex-direction: row;
		border: 1px solid var(--linkActive);
		height: 150px;
		margin-bottom: 10px;
	}

	.iotFlexBox DIV.iotCaption {
		background-color: var(--linkActive);
		color: white;
		font-size: 15pt;
		font-weight: bold;
		padding: 3px 3px 3px 3px;
		writing-mode: vertical-rl;
		transform: rotate(-180deg);
		text-align: center;
		width: 160px;
	}

	.iotFlexBox DIV.iotImg {
		width: 250px;
		background-color: red;
		align-self: center;
		margin-left: 4px;
		
	}
	.iotFlexBox DIV.iotDescr {
		padding: 10px 10px 10px 10px;
		text-align: left;
	}
}



TABLE.iot {width: 100%;}

@media (min-width: 900px) {
	TABLE.iot {width: 850px;margin: auto;}
}

TD.iot_img {
	width: 170px;
	font-size: 12pt;
	padding: 8px 0px 8px 0px;
}
TD.iot_txt {
	padding: 8px 0px 8px 15px;
	font-size: 1em;
	vertical-align: top;
	color: var(--textColor);
}
TD.iot_txt DIV {
	font-size: 1.5em;
	color: var(--linkActive);
}

