h1{
	font-size: 20pt;
	display: block;
	margin: 0px;
}

h3{
  display: block;
  font-size: 18pt;
  margin: 4px;
}

h4{
	font-size: 21pt;
	display: block;
	margin: 0px;
}

h5{
	font-size: 8pt;
	margin-top: -2px;
}

h6{
	font-size: 20pt;
}

h13{
	margin: 0px;
}

div{
	padding: 9px;
}

messageArray{
	display: none;
}

serviceArray{
	display: none;
}

[class^="grid"]{
	list-style-type: none;
	padding: 0px;
}

layoutControl {
  	display: grid;
 	grid-template-rows: auto auto auto 1fr auto auto;
  	grid-template-columns: 1fr;
  	grid-template-areas: 
  		"banner"
  		"vid"
  		"contact"
  		"display"
  		"selections"
  		"legal";
  		
  	height: 100%;
}

banner{
	display: block;
	height: 80px;
	width: 100%;
	background-image: url("../img/logo/primary/Mixed/Primary_Mixed-Lime-White-Lime.png");
	background-position: center; 
	background-size: contain;
	background-repeat: no-repeat;
	color: #F7F5F0;
	grid-area: banner;
}

buttons{
	grid-area: contact;
	
	margin: 10px 10%;
	
	border: solid 1px green;
}

highlight{
  	width: calc(100% + 20px);
  	margin-bottom: 10px;
  	margin-left: -10px;
  	display: flex;
  	padding: 10px 0px 10px 45px;
  	background-color: #D8F473;
  	background-image: url("../img/logo/bird/Bird_For_Animation_.png");
  	color: #000;
	background-position: top left 10px; 
	background-size: contain;
	background-repeat: no-repeat;
	min-height: 73px;
	align-items: center;
}

contact{
	padding: 10px 40px;
	border: solid 1px #D8F473;
	height: 40px;
	color: #F7F5F0;
	display: inline-flex;
    justify-content: center; /* center the content horizontally */
    align-items: center;  /* center the content vertically */
    border-radius: 3px;
    cursor: pointer;
	margin: 10px;
}

selections #contactButton{
	display: none;
}

selections{	
	width: 100%;
	grid-area: selections;
	display: flex;
    justify-content: space-around;
    border-top: 1px solid white;
}

selection{
	display: flex;
	flex-direction: column;
  	align-items: center;
	cursor: pointer;
    padding-left: 10px;
	margin: 10px auto;
	width: 33%;
}

selection > h4{
	color: white;
}

selection > h5{
	display: none;
}

#contactSelection{
	display: none;
}

subSelections{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	row-gap: 10px;
	padding-top: 0px;
	overflow: hidden;
	height: 0px;
	justify-items: center;
	width: 300%;
	z-index: 100;
}

servicebutton.active h13{
	opacity: 1;
}

servicebutton.active icon{
	border-color: black;
	background-color: rgba(216, 244, 115, 1.1);
	outline: 2px solid rgb(115, 214, 244);
}

selection.active h4{
	color: #D8F473;
}

selection.active subSelections{
	height: auto;
	padding-top: 15px;	
}

subSelection.active icon{
	border-color: black;
	background-color: rgba(216, 244, 115, 1.1);
	outline: 2px solid rgb(115, 214, 244);
}

subSelection icon{
	width: 64px;
	height: 64px;
	
	border: 1px solid white;
	background-color: rgba(255, 255, 255, 0.3);
}

subSelection h12{
  	color: white;
}

subSelection.active h12{
  	color: #D8F473;
}

bannerVideo{
	display: inline;
	color: #F7F5F0;
	grid-area: vid;
	overflow: hidden;
	width: 100%;
	height: auto;
}

bannerVideo.collapse{
	animation-name: collapse;
  	animation-duration: 2s;
  	animation-timing-function: ease-in-out;
  	animation-direction: normal;
  	animation-fill-mode: forwards;
}

bannerVideo.emerge{
	animation-name: emerge;
  	animation-duration: 2s;
  	animation-timing-function: ease-in-out;
  	animation-direction: normal;
  	animation-fill-mode: forwards;
}

contact.active{
	animation-name: clickAway;
  	animation-duration: 1.5s;
  	animation-timing-function: ease-in-out;
  	animation-direction: normal;
  	animation-fill-mode: forwards;
}

contact.emerge{
	animation-name: beClickable;
  	animation-duration: 1s;
  	animation-timing-function: ease-in-out;
  	animation-direction: normal;
  	animation-fill-mode: forwards;
}

#banner-video{
	width: 100%;
}

messages{
	display: none;
}

message{
	display: block;
	
	margin-bottom: 30px; 
}

.double{
	display: grid;
	column-gap: 10px;
	grid-template-columns: 55% 45%;
	grid-row-gap: 30px;
}

more{
	display: block;
	margin-top: 20px;
	padding-left: 60px;
}

action{
	display: inline-block;
	font-weight: bold;
	margin-bottom: 10px;
}

actionImage{
	float: left;
	width: 50px;
	height: 50px;
	background-color: #F7F5F0;
	border-radius: 25px;
	margin-right: 20px;
}

legal{
	background-color: white;
	padding: 2px 4px;
	border-top: solid 1px #8F9672;
	font-size: 10pt;
	grid-area: legal;
}

privacy {
	margin-left: 10px;
	cursor: pointer;
}

privacy:hover {
	color: #8F9672;
}

display{
	overflow-y: auto;
	overflow-x: hidden;
	display: inline-block;
	padding-bottom: 20px;
	height: 100%;
	grid-area: display;
	background-color: white;
}

package{
	overflow-y: auto;
	height: auto;
}

@keyframes collapse {
	0% {height: var(--vidHeight);}
	100% {height: 0px;}
}

@keyframes emerge {
	0% {height: 0px;}
	100% {height: var(--vidHeight);}
}

@keyframes clickAway {
	0%{ visibility: visible;
    	opacity: 1;
    	height:40px;
    	}
	50%{height:60px;
		margin: 10px;
		}
    100%{ visibility: hidden;
    	opacity: 0;
    	height: 0px; 
   		margin: 0px;
   		padding: 0px;
   		}
}

@keyframes beClickable {
  	0%{ visibility: hidden;
		opacity: 0;
		margin: 0px;
    	}

    100%{visibility: visible;
    	opacity: 1;
    	margin: 10px;
    	}
}

consultingLayoutControl{

}

#sidebarLayoutControl{
	display:grid;
	
	grid-template-columns: 75px 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 20px;
	
	grid-template-areas: 
  		"circle1 expertise1"
  		"circle2 expertise2"
  		"circle3 expertise3";
  		
  	padding: 20px 0px;
}

#c1{
	grid-area: expertise1;
}

#c2{
	grid-area: expertise2;
}

#c3{
	grid-area: expertise3;
}

#c4{
	grid-area: circle1;
	background-image: url("../img/ui/teamwork.png");
}

#c5{
	grid-area: circle2;
	background-image: url("../img/ui/knight.png");
}

#c6{
	grid-area: circle3;
	background-image: url("../img/ui/education.png");
}

.circle{
	background-color: #d8f473;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	
  	background-repeat: no-repeat;
  	background-position: center center;
  	background-size: 80%;
  	
  	margin: 10px;
}

#consultingTag{
	grid-area: side;
}

flexLayoutControl{
	margin: -5px 0px 20px 0px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

service > flexLayoutControl{
	margin: 15px 10px 5px 10px;
}

centerFlexLayoutContol{
	display: flex;
	justify-content: start;
	align-items: center;
	margin: 0px 5px;
}

arrowBox{
	height: 40px;
	width: 40px;
	background-color: #D8F473;
	display: inline-block;
	
	background-image: url("../img/ui/arrow_up_right.png");
	background-position: center; 
	background-size: 40%;
	
	background-repeat: no-repeat;
	
	margin: 10px 0px;
}

.rotated{
	transform: rotate(90deg);
}

divider{
	background-color: #D8F473;
	height: 2px;
	width: 40px;
	border-radius: 1px;
	display: inline-block;
	margin: 0px 20px;
}

#forTag{
	margin-bottom:20px;
}


for{
	display: block;
	padding: 10px 10px 15px 10px;
	background-color: #222823;
	margin: 10px 5px 25px 5px;
	border-radius: 5px;
}

for.emerge > h12{
	display: none;
}

productDetails > div, 
message > div{
	padding: 9px 9px 1px;
}

about > div{
	padding-bottom: 10px;
}

productDetails.emerge{
	
	margin-top: 10px;
	display: block;
	
	animation-name: fadeIn;
  	animation-duration: 2s;
  	animation-timing-function: ease-out;
  	animation-direction: normal;
  	animation-fill-mode: forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1;  }
}

teamMembers{
	margin-top: 20px;
	padding: 0px 5px;
	display: grid;
 	grid-template-rows: auto;
  	grid-template-columns: auto;
  	grid-row-gap: 30px;
}

teamMember{
	display: grid;
	
  	grid-template-columns: 164px 36px 1fr;
  	grid-template-rows: 200px 36px;
  	grid-template-areas: 
  		"photo photo txt"
  		"name social txt";
  		
  	column-gap: 10px;
  	row-gap: 5px;
}

servicespotlight{
	display: block;
}

service{
	display: block;
}

teamMember > * {
	display: block;
	overflow: hidden;
}

teamMember > name{
	grid-area: name;
	overflow: visible;
	font-weight: bold;
}

teamMember > linkedIn{
	grid-area: social;
	
	width: 36px;
	height: 36px;
		
	cursor: pointer;
	
	background-image: url("../img/ui/social/linkedIn/blue/In-Blue-128@2x.png");
	background-position: center; 
	background-size: contain;
	background-repeat: no-repeat;
	
	justify-content:end;

}

teamMember > photo{
	width: 100%;
	
	grid-area: photo;
}

teamMember > photo > img{
	width: 100%;
}

teamMember > about{
	grid-area: txt;
	
	overflow-y: auto;
}

paper{
	padding: 12px 10px 12px 50px;
	margin: 0px auto 5px auto;
	display: inline-block;
	width: 100%;
	border-radius: 25px;
	background-color: rgba(216, 244, 115, 1);
	outline: 1px solid grey;
	outline-offset: 3px;
}

.pdf{
	background-image: url("../img/ui/PDF Download.png");
	background-position: left;
	background-size: contain;
	background-repeat: no-repeat;
}

b{
	font-weight: 1000;
  	display: inline-block;
  	margin: 0px;
}

servicepicker{
	display: flex;
	align-items: flex-start;
  	justify-content: space-evenly;
	grid-row-gap: 5px;
	flex-wrap: nowrap;
	overflow: scroll;
	
	background-color: rgba(125, 126, 118, 0.3);
  	border-top: 1px solid #000;
  	border-bottom: 1px solid #000;
}

servicePicker h13{
	font-size: 8pt;
	font-weight: 600;
	text-align: center;
}

statement{
	display: block;
	padding: 0px 10px;
}

.layoutHorizontal{
	display: block;

	width: calc(100% - 20px);

  	background-repeat: no-repeat;
  	background-attachment: local;
  	background-size: calc(100% + 20px) auto;
  	border-top: solid 3px rgba(216, 244, 115, 0.3);
  	border-bottom: solid 3px rgba(216, 244, 115, 0.3);
  	margin: 10px;
  	
  	background-position: -10px -10px;
}

#layoutImage1{
	content: url("../img/ui/layout/top.png"); 
}

#layoutImage2{
	content: url("../img/ui/layout/middle.png"); 
}

#layoutImage3{
	content: url("../img/ui/layout/bottom.png");  
}

#layoutImage4{
	content: url("../img/ui/layout/layout_4.jpg"); 
}

#PPM_0{
	content:url("../img/ui/PPM/Risk Assessments.png");
	width: 100%;
}
#PPM_1{
	content:url("../img/ui/PPM/Privacy Program Development.png");
	width: 100%;
}
#PPM_2{
	content:url("../img/ui/PPM/Data Mapping.png");
	width: 100%;
}
#PPM_3{
	content:url("../img/ui/PPM/Vendor Assessments.png");
	width: 100%;
}
#PPM_4{
	content:url("../img/ui/PPM/Incident Response.png");
	width: 100%;
}
#PPM_5{
	content:url("../img/ui/PPM/Monitoring for Changes.png");
	width: 100%;
}
#PPM_6{
	content:url("../img/ui/PPM/Audits.png");
	width: 100%;
}
#PPM_7{
	content:url("../img/ui/PPM/Product Privacy.png");
	width: 100%;
}
#PPM_8{
	content:url("../img/ui/PPM/Training.png");
	width: 100%;
}
#PPM_9{
	content:url("../img/ui/PPM/Policy Development.png");
	width: 100%;
}

#PPM > ul > li{
	display: grid;
  	
  	grid-template-areas: 
    "icon title" 
    "desc desc";
    
    grid-template-columns: 64px 1fr;
    grid-template-rows: 64px 1fr;
}

#PPM > ul > li > div{
	margin: 5px;
	grid-area: desc;
}

#PPM > ul > li > b{
	margin: 10px 5px 5px 0px;
	grid-area: title;
}

#PPM > ul > li > img{
	grid-area: icon;
}

serviceButton{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 25%;
	margin: 10px;
}

services{
	display: grid;
  	grid-template-columns:1fr;
  	grid-row-gap: 20px;
	margin: 40px 10px;
}

.internalContent ul{
	display: grid;
	grid-template-columns:1fr 1fr;
	gap: 10px;
}

.internalContent li{
	background-color: #d8f473;
	padding: 10px;
	color: black;
	border-radius: 5px;
}

.internalContent li img{
	float: left;
	padding-right: 5px;
	width: 50px;
	height: 50px;
}

service{
	margin: 20px 10px 0px 10px;
}

service > div{
	padding: 10px 0px;
}

service > h1{
	font-size: 30pt;
	margin: 20px 10px 10px 10px;
}

service > h2{
	font-size: 14pt;
}

service > ul{
	display: grid;
	list-style-type: none;
	list-style-position: inside;
	margin-left: 0px;
	padding-left: 0px;
	gap: 10px;
}

service > ul li{
	background-color: rgba(216, 244, 115, 0.3);
	padding: 20px;
}

connectionLayoutControl{
  	margin-top: 30px !important;
}

connection{
	display: grid;
	justify-content: center;
	padding 10px;
}

connection img{
	width: 100%;
	max-width: 256px;
	border-radius: 5px;
	border: solid 1px rgba(216, 244, 115, 0.5);
  	background-color: rgba(216, 244, 115, 0.1);
}

connection h13{
	margin-top: -47px;
}

icon{
	display: block;
	width: 64px;
	height: 64px;
	background-position: center center; 
	background-size: 90%;
	background-repeat: no-repeat;
	background-color: white;
	margin: 0px auto;
	
	border-radius: 3px;
	
	border:solid 1px rgba(216, 244, 115, 1);
	cursor: pointer;
	
	
}

icon:hover{
	border-color: #222823;
}

img.phone {
	content: url("../img/ui/contact/set1/voice.png");
}

img.email {
	content: url("../img/ui/contact/set1/email.png");
}

img.sms {
	content: url("../img/ui/contact/set1/chat.png");
}

icon.PPM {
	background-image: url("../img/ui/set1/privacy.png");
}

icon.DPO {
	background-image: url("../img/ui/set1/dpo.png");
}

icon.AIGov {
	background-image: url("../img/ui/set1/governance.png");
}

icon.CompMgmt {
	background-image: url("../img/ui/set1/compliance.png");
}

.set2 img{
	width: 100%;
	padding 2px;
	border-radius: 3px;
}

.set2 img.PPM{
	content: url("../img/ui/set2/privacy.png");
}

.set2 img.DPO {
	content: url("../img/ui/set2/dpo.png");
}

.set2 img.AIGov {
	content: url("../img/ui/set2/governance.png");
}

.set2 img.CompMgmt {
	content: url("../img/ui/set2/compliance.png");
}

copy{
	display: inline-block;
	margin-top: 30px;
}

copy > div{
	padding-left: 30px;
	margin-left: 10px;
	align-items: center;
	background-image: url("../img/ui/copy.png");
	background-position: left center; 
	background-size: 24px;
	background-repeat: no-repeat;
	
	cursor: pointer;
}

.coppied{
	background-image: url("../img/ui/clipboard.png");
	color: green;
}

complianceWise{
	margin: 20px 10px 40px 10px;
  	display: block;
}

logo{
	display: block;
	width: 340px;
	height: 200px;
	background-image: url("../img/logo/secondary/Solid/Secondary_Solid-Lime.png");
	background-position: center; 
	background-size: contain;
	background-repeat: no-repeat;
	
	margin: 0px auto;
}

.sage{
	background-image: url("../img/logo/mark/Mark_Sage.png");
}

#h3 {
color: black
}

#f2 {
background-color: #f3fcd5; 
}

#f2 h3 {
  font-family: "PWSecondary", "Arial", sans-serif;
  display: inline;
  font-size: 25pt;
  color: black;
	}

#f2 servicePicker {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  border-radius: 3px;
  padding: 20px;
  overflow-y: scroll;
  
  background-color: rgba(82, 88, 58, 0.3);
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  border-radius: 3px;
}

#f3 productDetails {
font-family: "PWSecondary", "Arial", sans-serif;
  display: inline;
  font-family: "PWPrimary", "Arial", sans-serif;
  color: black;
}

#f3 servicePicker {
 display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  border-radius: 3px;
  padding: 20px;
}

.lightColor {
  color: #F5F5F5;
}

.center {
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

button {
  border: none;
  padding: 20px 60px;
  border-radius: 10px;
  margin: 20px 0px;
  background-color: #D8EF79;
  cursor: pointer;
}

button:focus,
button:active {
  color: #fff;
  outline: none;
}

.grid4 li{
	border: solid 1px black;
	padding: 2px;
	border-radius: 3px;
}

.grid2{
	display: flex;
	flex-direction: column;
}

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

financialLayoutControl {
  display: grid;
  column-gap: 10px;
  grid-template-columns: 40% 1fr;
  background: url('../img/ui/bg@2x.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  color: #f5f5f5;
  padding: 10px;
  margin: 30px auto 10px auto;
}

.circled{
  background-color: #f5f5f5;
  color: #000;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 4px;
}

#f2 .circled{
	background-color: #d7f372;
	color: #222823;
}

.grid3 {
  display: grid;
  grid-template-columns: 1fr;
}

.service {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
}

.serviceText h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0px 10px;
  justify-items: center;
  column-gap: 10px;
  row-gap: 15px;
}
/* ─── Contact Form (mobile) ────────────────────────────────────────────────── */

.form-row.grid2 {
	grid-template-columns: 1fr;
}
