* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Verdana, sans-serif;
}

html {
	scrollbar-color: rgb(36, 76, 128) rgb(187, 209, 233);
}

.mainarea {
	padding: 15px 30px 25px 35px;
	background-color: white;
}

.sticky ~ #mainarea {
	padding-top: 43px;
}

/******************header area*********************/

#tgdiv {
	height: 169px;
}

#leftphoto {
	width: 40vw;
	height: 100%;
	display: block;
	position: fixed;
	top: 0px;
	left: 0px;
}

#leftphoto img {
	height: 100%;
	width: 100%;
	border: 2px #244C80 solid;
}

header {
	height: 100vh;
	width: 100%;
	position: relative;
	z-index: 50;
	border-bottom: 2px #244C80 solid;
}

#topbar {
	background-image: url('../images/cloudsnoborder.gif');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 60vw;
	text-align: center;
	position: fixed;
	top: 0px;
	right: 0px;
}

#hedln {
	width: 100%;
	position: absolute;
	top: 8%;
	text-align: center;
}

#hedln h1 {
	color: white;
	font-size: 3em;
	padding: 8px 20px;
	background-color: #244C80;
	display: inline-block;
	border:  2px white solid;
	margin: 0px 15px;
	border-radius: 25px/15px;
}

#topbar p {
	color: white;
	font-size: 1.2em;
	position: absolute;
	bottom: 0%;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
}

#startbut {
	box-shadow: 0px 1px 5px white;
	opacity: 1;
	cursor: pointer;
	height: 75px;
	width: 185px;
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translateX(-50%);
}

#sbtg {
	position: absolute;
	height: 75px;
}

#startbut img {
	height: 100%;
	width: 100%;
}

linksec {
	min-height: 100vh;
	overflow: hidden;
}

iconbox {
	display: flex;
	justify-content: space-around;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
	position: relative;
	min-height: 100vh;
	width: 100%;
	overflow: hidden;
}

#iconbkgnd {
	position: absolute;
	background-image: url('../images/HC1Logoblank.jpg');
	background-size: 100% 100%;
	height: 100vh;
	width: 100%;
	transform: translateY(-50%);
	z-index: -50;
}

.iconsec {
	padding: 10px;
	background-color: rgba(255, 255, 255, .6);
	border: 2px black solid;
	cursor: pointer;
	text-align: center;
	margin-bottom: 25px;
	opacity: .05;
	position: relative;
	transition: opacity .4s ease-in-out, left .4s ease-in-out;
}

#iconhome {
	left: 150px;
}

#iconintro {
	left: 100px;
}

#iconwhat {
	left: 50px;
}

#iconhow {
	left: -50px;
}

#iconexamp {
	left: -100px;
}

#icongetst {
	left: -150px;
}

.iconin {
	opacity: 1;
	left: 0 !important;
}

.iconsec h6 {
	font-size: 1em
}

.iconsec a {
	text-decoration: none;
	color: black;
}

#menu {
	background-color: #244C80;
	height: 28px;
	z-index: 50;
	width: 100%;
}

.sticky {
	position: fixed;
	top: 0;
}

/************main sections***************/

section {
	margin: 5px 0px 0px 15px;
}

section > h2::before{
	content: url('../images/SElogosmall.jpg');
	position: relative;
	top: 17px;
	padding-right: 15px;
	left: -20px;
	transition: left .4s ease-in-out;
}

section > h2.h2in::before {
	left: 0px;
}

h2 {
	font-size: 2rem;
	font-weight: bold;
	color: #244C80;
	position: relative;
	line-height: 65px;
	width: 100%;
	border-bottom: 3px #244C80 solid;
}

section > h2 {
	margin: 15px -5px;
	opacity: .05;
	transition: margin .4s ease-in-out, opacity .4s ease-in-out;
}

section > h2.h2in {
	margin: 15px -15px;
	opacity: 1;
}

.h2wrap {
	margin: 3px 0px 15px 15px;
}

h3 {
	font-size: 1.5rem;
	font-weight: bold;
	color:  #244C80;
	margin-top: 15px;
}

.h3wrap {
	margin: 3px 0px 10px 15px;
}

h4 {
	font-size: 1.1rem;
	color: #74247B;
	margin-top: 10px
}

.h4wrap {
	margin: 3px 0px 8px 15px;
}

h4 ~ ul li {
	list-style: none;
}

p {
	font-size: 1rem;
}

p ~ ul {
	margin-left: 30px;
	font-size: 1rem;
	margin-bottom: 15px;
}

.txtlist li {
	display:flex;
	align-items: center;
}

.txtlist img {
	height:50px;
	border:1px #244C80 solid;
	aspect-ratio: 9/11;
	transform: translateX(-15px);
	transition: transform .4s ease-in-out;
}

.tl img {
	transform: translateX(0px);
}

.txtlist span {
	margin-left: 10px;
}

/**********Regular expand trigger boxes***********/

trigger {
	overflow: hidden;
	transform: scaleX(1);
	transition: height .4s linear, transform .2s linear, margin .4s ease-in-out;
	transform-origin: left center;
	width: clamp(45%, 88%, 98%);
	height: 120px;
	display: flex;
	cursor: pointer;
	background: #244C80;
	background-size: 100% 100%;
	margin: 10px 0px 0px 5px;
	border-radius: 10px 25px 0px 0px;
}

.tin {
	margin: 10px 0px 0px 15px;
}

trigger:hover {
	transform: scaleX(1.02);
}

trigbox {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center; 
	width: 100%;
	container-name: tbox;
	container-type: inline-size;
	flex-wrap: nowrap;
}

trigmainicon {
	width: 145px;
}

trigmainicon img {
	height: 100%;
	padding: 8px;
	transform: translateX(20px);
	transition: transform .4s ease-in-out;
}

.tin trigmainicon img {
	transform: translateX(0px);
}

.triggeropen {
	height: 80px;
}

.triglab, .trigclickbar {
	color: white;
	max-width: 97%;
	text-align: center;
	align-content: space-around;
	font-family: "Times New Roman", Times, serif; 
	position: relative;
	transition: all .4s linear;
}

.triglab {
	font-size: 3em;
	white-space: nowrap;
	opacity: .05;
}

.tin .triglab {
	opacity: 1;
}

.trigclickbar {
	display: flex;
	justify-content: center;
}

.trigclickbar span {
	font-size: 1.2rem;
}

.trigicon {
	display: inline-block;
	width: 25px;
	height: 25px;
	margin: 0px 5px;
	transition: all .7s linear;
	position: relative;
}

.trigiconx, .trigicont {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 25px;
	height: 23px;
	background-repeat: no-repeat;
	background-position: center;
}

.trigiconx {
	background-image: url('../images/ContractX.jpg');	
}

.trigicont {
	background-image: url('../images/Expandplus.jpg');
	opacity: 1;
	transition: opacity .4s linear;
}

.triginst {
	height:25px;
	display: inline-block;
}

.triginstr {
	transition: all .7s linear;
	position: relative;
	padding-left: 0px;
	display: inline-block;
	height: 25px;
	width: 50px;
}

.trigiconopen .trigicont {
	opacity: 0;
}

.triginstrx, .triginstrt {
	position: absolute;
	top: -1px;
	left: 0px;
	width: 25px;
	height: 25px;
	transition: opacity .4s linear;
}

.triginstrx {
	opacity: 0;
}

.triginstrt {
	opacity: 1;
}

.triginstropen .triginstrx {
	opacity: 1;
}

.triginstropen .triginstrt {
	opacity: 0;
}

explab {
	font-weight: bold;
	color: #244C80;
	font-size: 1.2rem;
}

containbox {
	display: block;
	width: 100%;
	height: 0px;
	margin-bottom: 10px;
	overflow: hidden;
	transition: height .6s ease-in-out;
	box-sizing: border-box;
	border: 1px solid #244C80;
}

expbox {
	display: block;
}

expframe {
	display: block;
	border: 1px #244C80 solid;
	padding: 15px 15px 15px 42px;
	background-image: url('../images/cloudsbiglightest.jpg');
	box-shadow: inset 5px 2px 2px rgba(36, 76, 128, 0.7);
	background-repeat: no-repeat;
	background-size: cover;
}

expframe p {
	margin:  3px 0px 5px 0px;
	font-size: 1.1rem;
}

/*************pdf document expand boxes************/

.pdf {
	width: 100%;
	aspect-ratio: 22/17;
}

.pdflink, .xlink {
	margin: 0px;
	padding-top: 15px;
	width: 98%;
}

.pdflinkcont {
	padding:0px 10px;
	border-bottom: 2px solid #244C80;
	margin-bottom: -2px;
	display: flex;
	margin-left: 10px;
	transition: margin .4s ease-in-out;
}

.pdin {
	margin-left: 0px;
}

.pdfttlebar {
	min-width: 66%;
	display: flex;
	color: #244C80;
	cursor: pointer;
	min-height: 31px;
	font-size: 1.2rem;
	padding: 0px 6px 0px 0px;
	transform-origin: left center;
	transition: all .2s linear;
	transform: scaleX(1);
	background-image: url('../images/cloudsbiglightest.jpg');
	border: 1px #244C80 solid;
	margin: 5px 30px 0px 25px;
	box-shadow: 0px 0px 1px #244C80;
	width: auto;
	align-items: center;
	border-top-right-radius: 25px 10px;
	border-top-left-radius: 5px;
}

.pdfttlebar:hover, .xttlebar:hover {
	transform: scaleX(1.02);
	box-shadow: 1px -1px 1px #244C80;
}

.pdficon {
	width: 25px;
	height: 25px;
	margin: 0px 10px;
	transform-style: preserve-3d;
	transform-origin: 12px 12px 0;
	transition: transform .7s linear;
}

.pdficonx, .pdficont {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 25px;
	height: 25px;
}

.pdficonx {
	background-image: url('../images/BContractX.jpg');
	background-repeat: no-repeat;
	background-position: center;
	transform: rotateX(90deg) translateZ(12px);
	border-right: 1px solid #EBF0F8;
	border-left: 1px solid #EBF0F8;
}

.pdficont {
	background-image: url('../images/BExpandplus.jpg');
	background-repeat: no-repeat;
	background-position: center;
	transform: rotateX(0deg) translateZ(12px);
	border-top: 1px solid #EBF0F8;
	border-right: 1px solid #EBF0F8;
	border-left: 1px solid #EBF0F8;
}

.pdficonopen {
	transform: translateZ(-12px) rotateX(-90deg);
}

.pdficonout .pdficonx {
  border-right: 1px solid #C3CAEB;
  border-top: 1px solid #C3CAEB;
  border-left: 1px solid #B4BCE6;
  border-bottom: 1px solid #B4BCE6;	
}

.pdficonout .pdficont {
  border-right: 1px solid #C3CAEB;
  border-left: 1px solid #B4BCE6;
  border-bottom: 1px solid #B4BCE6;	
}

.pdflinkcontno, .xlinkcont {
	display: flex;
	padding: 0px 10px;
	border: none;
	margin-left:  10px;
	transition: margin .4s ease-in-out;
}

.xin {
	margin-left: 0px;
}

.pdflinkcontno a, .xlinkcont a {
	text-decoration: none;
	margin-right: 15px;
	color:#244C80;
	font-size: 1.4rem;
	width: 100%;
	opacity: .05;
	transition: opacity .4s ease-in-out;
}

.xin a {
	opacity: 1;
}

.pdflinkcontno:hover {
	transform: scaleX(1.02);
	background-image: url('../images/cloudsbiglighter.jpg');
	box-shadow: 1px 1px 1px #244C80;
}

.pdflinkcontno .pdficon {
	display: none;
}

.pdflinkcontno .pdfttlebar, .xttlebar {
	min-width: 66%;
	display: flex;
	color: #244C80;
	cursor: pointer;
	font-size: 1.2rem;
	padding: 3px 6px 3px 3px;
	transform-origin: left center;
	transition: all .2s linear;
	transform: scaleX(1);
	background-image: url('../images/cloudsbiglightest.jpg');
	border: 1px #244C80 solid;
	margin: 5px 30px 5px 25px;
	box-shadow: 0px 0px 1px #244C80;
	border-radius: 9px 40px 40px 9px /6px 15px 15px 6px;
}

.pdflinkcontno ~ .pdfframecont {
	border: none;
}

.pdfdel::after {
	content: url("../images/Stopwatch.gif");
	transform:scale(.4);
	position:absolute;
	right:-56px;
	top:-31px;
}

.pdflinkcont a {
	text-decoration: none;
	font-size: 1.4rem;
	color: #244C80;
	opacity: .05;
	transition: opacity .4s ease-in-out;
}

.pdin a {
	opacity: 1;
}

.pdfframecont {
	border:#244C80 1px solid;
	margin-bottom: 10px;
	box-shadow: inset 5px 2px 2px rgba(36, 76, 128, 0.7);
	padding-left: 6px;
}

.pdfexp {
	overflow: hidden;
	height:0px;
	transition: height .6s ease-in-out;
	width:100%;
}

/*************Videos*******************/

.ytlink {
	margin-left: 15px;
	background-color: #244C80;
	background-image: url('../images/cloudsbigdarker.jpg');
	padding:4px;
	float:left;
	border: 1px #244C80 solid;
	border-top-left-radius: 7px;
	border-top-right-radius: 5px;
	border-bottom: 1px #73A9E5 solid;
}

.ytlink:hover {
	background-image: url('../images/cloudsbigdarker2.jpg')
}

.ytlink a {
	color:white;
}

.ytlink a:visited{
	color:white;
}

vidsec {
	display: block;
}

video {
	height:auto;
	width:100%;
	max-height: 100%;
}

.vidr {
	padding:15px 0px 0px 0px;
	margin:0;
}

/*********Startlink**********/

#startlinkwrap {
	text-align: center;
	margin-top: 25px;
}

#startlink {
	background-image: url('../images/cloudsbiglighter.jpg');
	font-size: 1.5em;
	border: 1px #244C80 solid;
	border-radius: 10px;
	margin: 15px auto;
	cursor: pointer;
	color: #244C80;
	text-decoration: none;
	padding: 15px 25px;
}

#startlink:hover {
	background-image: url('../images/cloudsbigdarker.jpg');
}

#startlink:hover a {
	color: white;
}

#startlink img {
	margin-bottom: 3px;
}

/****************footer*****************/

.topsidebdr {
	position: relative;
	width: 100%;
}

.botsidebdr {
	position: relative;
	width: 100%;
}

#ltside, #ltsidebot {
	position: absolute;
	left: 0px;
	width: 25px;
}

#rtside, #rtsidebot {
	position: absolute;
	right: 0px;
	width: 25px;
}

#rtsidebot, #ltsidebot {
	bottom: 0px;
	height: 260px;
}

#ltside, #rtside {
	top: 27px;
	height: 260px;
}

footer {
	clear: both;
	position: relative;
	bottom: 0px;
	width: 100%;
	height: 79px;
	z-index: 1;
}

footer img {
	height: 79px;
	width: 100%;
}

#thinker {
	float: left;
	width: 90px;
}

#facphoto {
	float: right;
	width: 137px;
}

#footerbar {
	width: 100%;
	height: 79px;
	background-image: url('../images/footerbar.gif');
	background-size: cover;
	background-position: center center;
	text-align: center;
	font-size: 12pt;
	line-height: 70px;
}

/**********responsive header**************/

@media screen and (max-width: 1086px) {
	#hedln h1 {
		font-size: 2.4em
	}

	.iconsec {
		padding:15px;
	}

	#topbar p {
		font-size: .9em;
	}

	#tgdiv {
		height: 120px;
	}

	footer {
		height: 70px;
	}

	footer img{
		height: 70px;
	}

	#footerbar {
		height: 70px;
		font-size: 11pt;
	}

	#thinker {
		width: 85px;
	}

	#facphoto {
		width: 130px;
	}
}

@media screen and (max-width: 890px) {
	#hedln h1 {
		font-size: 2em;
	}

	#tgdiv {
		height: 100px;
	}

	#topbar p {
		font-size: .8em;
	}

	.iconsec {
		padding: 10px;
	}

	.iconsec img {
		height: 70%;
		width: 70%;
	}

	.iconsec h6 {
		font-size: .7em;
	}

	#startbut {
		height: 65px;
		width: 170px;
	}

	footer {
		height: 65px;
	}

	footer img {
		height: 65px;
	}

	#footerbar {
		height: 65px;
		font-size: 10pt;
	}

	#topbar p {
		font-size: .8em;
	}

	#thinker {
		width: 80px;
	}

	#facphoto {
		width: 122px;
	}
}

@media screen and (max-width: 645px) {
	#hedln h1 {
		font-size: 1.3em
	}

	#tgdiv {
		height: 85px;
	}

	.iconsec {
		padding: 5px;
	}

	#topbar p {
		font-size: .6em;
	}

	.iconsec img {
		height: 60%;
		width: 60%;
	}

	.iconsec h6 {
		font-size: .6em;
	}

	#startbut {
		height: 50px;
		width: 150px;
	}
}

@media screen and (max-width: 510px) {
	#topbar {
		width: 100vw;
		position: absolute;
	}

	#leftphoto {
		display: none;
	}

	#startbut {
		height: 60px;
		width: 170px;
	}

	iconbox {
		display: block;
		text-align: left;
	}

	.iconsec {
		width: 94%;
		margin: 15px 3%;
		text-align: left;
		position: relative;
		opacity: 1;
	}

	#iconhome, #iconintro, #iconwhat, #iconhow, #iconexamp, #icongetst {
		left: 0px;
	}

	.iconsec img {
		height: 48px;
		width: 48px;
		display: inline-block;
	}

	.iconsec h6 {
		font-size: 1.5em;
		display: inline-block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		padding-left: 10px;
	}

	#menu {
		height: auto;
	}

	.sticky {
		position: relative;
	}

	#righttopphoto, #lefttopphoto, #ltsidebot, #rtsidebot, #ltside, #rtside {
		display: none;
	}

	footer {
		height: 60px;
	}

	footer img {
		height: 60px;
	}

	#footerbar {
		height: 60px;
		font-size: 8pt;
	}

	#thinker {
		width: 0px;
	}

	#facphoto {
		width: 0px;
	}
}

/***********responsive main***************/

@media screen and (max-width: 850px) {
	h2 {
		font-size: 1.8rem;
	}

	h3 {
		font-size: 1.4rem;
	}

	.pdflinkcont a, .pdflinkcontno a, .xlinkcont a {
		font-size: 1.3rem;
	}
}

@media screen and (max-width: 750px) {
	h2 {
		font-size: 1.5rem;
	}

	h3 {
		font-size: 1.3rem;
	}

	.pdflinkcont a, .pdflinkcontno a, .xlinkcont a {
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 650px) {
	section {
		margin-top: 10px;
	}

	h2 {
		font-size: 1.3rem;
		font-weight: normal;
		line-height: normal;
	}

	h3 {
		font-size: 1.2rem;
	}

	.pdflinkcont a, .pdflinkcontno a, .xlinkcont a {
		font-size: 1.1rem;
	}

	triglab, explab {
		font-weight: normal;
		font-size: 1rem;
	}

	trigger {
		height: 80px;
	}

	.triggeropen {
		height: 60px;
	}

	.mainarea {
		margin: 0px;
		padding: 15px 10px 25px 10px;
	}

	.expbox {
		margin: 39px 0px 0px 0px;
	}

	.expframe {
		padding: 5px 3px 0px 5px;
	}

	.expframe p {
		font-size: .9rem;
		padding: 0px 10px;
	}

	.disclist {
		padding: 15px 15px 15px 35px
	}

	#ltside, #ltsidebot, #rtside, #rtsidebot {
		display: none;
	}

	section > h2::before {
		content:none;
		padding-right:0px;
	}
}

@media screen and (max-width: 600px) {
	trigmainicon {
		display: none;
	}
}

@media screen and (max-width: 510px) {

	.trigger {
		height:195px;
	}

	reviewsec {
		padding-bottom: 35px;
	}

/************Responsive pdflink********************/

	.pdfframecont {
		border: none;
		margin: 0;
	}

/************* Responsive videos********************/
	.closebox {
		top:-9px;
	}

	.ytlink {
		margin-left: 5px;
		padding: 4px;
	}

	.ytlink a {
		font-size: .7rem;
	}

	.closebox {
		padding:4px;
	}
}

@media screen and (max-width: 420px) {
	trigbox {
		flex-wrap: wrap;
	}

	.triglab {
		white-space: normal;
	}
}

@media screen and (max-width: 350px) {
	.ytlink a {
		font-size: .6rem;
	}
}

/****************Container queries***********************/

@container tbox (width<950px) {
	.triglab {
		font-size: 2.8em;
	}

}

@container tbox (width<850px) {
	.triglab {
		font-size: 2.7em;
	}

	.trigclickbar span, .triginst {
		font-size: 1.1em;
	}
}

@container tbox (width<685px) {
	.triglab {
		font-size: 2.2em;
	}
}

@container tbox (width<515px) {
	.triglab {
		font-size: 2em;
	}

	.trigclickbar span, .triginst {
		font-size: 1.1em;
	}
}

@container tbox (width<415px) {
	.triglab {
		font-size: 1.5em;
	}
}

@container tbox (width<345px) {
	.triglab {
		font-size: 1.2em;
	}
}
