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

messageArray{
	display: none;
}

serviceArray{
	display: none;
}

centerFlexLayoutContol{
	display: flex;
	justify-content: start;
	align-items: center;
}

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

contact{
	    
    position: absolute;
    top: 30px;
    right: 2%;
    z-index: 0;
    
	background-color: #5B4A28;
	
	height: 40px;
	width: 300px;

	display: flex;
    justify-content: center; 
    align-items: center;  
    border-radius: 3px;
    cursor: pointer;

    font-weight: 720;
}

contact:before {
    position: absolute;
    top: -2px;
    left: -2px;
    z-index: -5;
    
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400%;
    
    filter: blur(6px);
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-out;
}

contact:hover {
	opacity: 1;
}

contact:active {
    color: #FFF;
}

contact:active:after {
    background: #333;
}

contact:hover:before {
    opacity: 1;
}

contact:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 300px;
    height: 40px;
   
    border-radius: 3px;
    
    background-color: #D8F473;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

contact.active{
	display: none;
}

selections{
	grid-area: selections;
	background-color: white;
	padding-top: 10px;
	display: flex;
	flex-direction: column;
}

selection{
	z-index: 100;
	cursor: pointer;
    border-top: 1px solid #DCDCDC;
    border-bottom: 1.5px solid #DCDCDC;
    padding: 10px;
    margin: 10px;
    font-size: 14pt;
    border-radius: 3px;
    max-width: 205px;
    background-color: #FFF;
}

selection > h1{
	padding: 0px;
}

selection > h5{
	margin: -5px 0px;
	color: #8F9672;
}

selection:hover{
	background-color: rgba(216, 244, 115, 0.3);
}

selection:active {
	background-color: rgba(216, 244, 115, 0.3);
}

subSelections{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	row-gap: 10px;
	padding-top: 0px;
	overflow: hidden;
	height: 0px;
}

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

subSelection.active icon{
	border-color: rgba(216, 244, 115, 1);
	background-color: rgba(216, 244, 115, 0.1);
}

subSelection icon{
	width: 64px;
	height: 64px;
}

subSelection h12{
	font-family: "PWPrimary", "Arial", sans-serif;
  	font-weight: 100;
  	display: inline;
  	font-size: 8pt;
  	display: flex;
  	justify-content: center;
  	margin: 0.5px;
}

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

subSelection.active h12{
  	font-weight: 700;
}

bannerVideo{
	display: block;
	color: #F7F5F0;
	grid-area: vid;
	overflow: hidden;
	
	height: auto;
}

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

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

#banner-video{
	width: 100%;
}

messages{
	display: none;
}

message{
	display: block;
	margin:0px 0px 20px 0px;
}

services{
	display: none;
}

div{
	padding: 10px 0px;
}

statement{
	width: 100%;
	overflow:hidden;
}

highlight{
  	width: 100%;
  	margin-bottom: 10px;
  	display: flex;
  	
  	padding: 0px 0px 0px 85px;
  	font-weight: bold;
  	
  	background-image: url("../img/logo/bird/Bird_Green.png");
	background-position: 10px center; 
	background-size: contain;
	background-repeat: no-repeat;
    /* background-color: #60093A; */
} 


.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{
	/*position: absolute;
	bottom: 0px;
	right: 15px;*/
	background-color: white;
	padding: 2px 4px;
	border-top: solid 1px #8F9672;
	grid-area: legal;
}

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

privacy:hover {
	color: #8F9672;
}

display{
	overflow-y: auto;
	display: inline-block;
	padding: 20px 10px 20px 0px;
	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);}
}

teamMembers{
	margin-top: 20px;
	display: grid;
 	grid-template-rows: auto;
  	grid-template-columns: auto;
  	grid-row-gap: 50px;
}

teamMember{
	display: grid;
	
  	grid-template-columns: 200px 36px 1fr;
  	grid-template-rows: auto auto 1fr;
  	grid-template-areas: 
  		"photo photo about"
  		"name social about"
  		". . about";
  		
  	column-gap: 20px;
  	row-gap: 5px;
	
}

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

teamMember > name{
	grid-area: name;
	
	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: about;
}

b{
	font-weight: 1000;
}

servicePicker{
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	background-color: rgba(125, 126, 118, 0.3);
	border-top: 1px solid #DCDCDC;
	border-bottom: 1px solid #DCDCDC;
	border-radius: 3px;
	
	padding: 20px;
}

serviceButton{
	
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	width: 25%;
}

serviceButton.active icon{
	outline: solid 3px rgb(115, 214, 244);
	background-color: rgba(216, 244, 115, 1.1);
}

serviceButton.active h13{
	font-weight: 700;
}

serviceLayoutControl
	display: grid;
	
  	grid-template-columns: 50% 1fr;
  	grid-template-rows: 0fr 0fr 0fr;

	align-items: center;
  		
  	column-gap: 6px;
  	row-gap: 6px;

}

consultingLayoutControl{
	display: grid;
  	grid-template-columns:50% 1fr;
	grid-column-gap: 40px;
  		
  	padding: 60px 0px;
}

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

.shiftUp{
	margin: -10px 0px 0px -5px;
}

#c1{
	grid-area: expertise1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#c2{
	grid-area: expertise2;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#c3{
	grid-area: expertise3;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

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

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

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

.circle{
	background-color: #d8f573;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	
  	background-repeat: no-repeat;
  	background-position: center center;
  	background-size: 80%;
}

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

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

service > div{
	
}

service > 
{
	display: block;
	padding-top: 20px;
}

service > h1{
	margin-left: 10px;
}

service > ul{
	padding: 0px;
}

service > ul > li{
	background-color: rgba(216, 244, 115, 0.3);
	border-radius: 5px;
	padding: 20px;
	list-style-type: none;
}

#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{
	flex-wrap: wrap;
	justify-content: center;
}

#PPM > ul > li{
	display: grid;
  	width: 100%;
  	grid-template-areas: 
    "icon title" 
    "description description";
    grid-template-columns: 64px auto;
    grid-template-rows: auto 1fr;
}

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

#PPM > ul > li > div{
	grid-area: description;
}

#PPM > ul > li > b{
	grid-area: title;
	padding-top: 5px;
}

#policy > statement > ul > li{
	list-style-type: disc;
 	margin-left: 20px;
  	padding-left: 10px; 
}

statement h8.center{
	padding: 0px;
}

#policy > statement > ul{
	padding: auto;
}

#policy > statement > ul > li{
	cursor: auto;
}

#services > statement > ul > li{
	cursor: pointer;
	border: solid 1px black;
	border-radius: 5px;
	padding: 2px;
}

statement > h2{
	display: block;
	margin: 50px 0px 20px 0px;
}

.layoutHorizontal{
	display: block;

	width: 100%;

  	background-repeat: no-repeat;
  	background-attachment: local;
}

#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"); 
	margin-bottom: 20px;
}

paper{
	padding: 24px 10px 24px 80px;
	margin: 10px auto 10px 4px;
	cursor: pointer;
	display: inline-block;
	border-radius: 35px;
	background-color: rgba(216, 244, 115, 1);
	width: calc(100% - 10px);
	outline: 1px solid grey;
	outline-offset: 3px;
}

paper:hover{
	font-weight: 700;
}

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

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

forLayoutControl{  		
  	padding: 40px 0px;
  	display: inline-block;
}

for{
	display: block;
	padding: 20px;
	background-color: #222823;
	margin: 20px 0px 0px 0px;
}

.productHead{
	padding-bottom: 0px;
}

productdetails > div{
	padding-bottom: 25px;
}

productdetails > servicePicker{
	justify-content: flex-start;
	gap: 5px;
	padding: 20px 0px;
	margin-top: 30px;
}

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

connectionLayoutControl{
	padding: 20px 20px 0px 20px;
	
}

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

icon{
	display: block;
	width: 128px;
	height: 128px;
	background-position: center center; 
	background-size: 95%;
	background-color: rgba(216, 244, 115, 0.4);
	background-repeat: no-repeat;
	margin: 0px auto;
	cursor: pointer;
}

connection h13 {
	margin-top: -10px;
	font-weight: 1000;
}

icon:hover{
	background-color: rgba(216, 244, 115, 0.3);
	border-color: rgba(216, 244, 115, 1);;
}

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%;
	border-radius: 5px;
}

.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");
}


serviceButton.active{
	
}

serviceButton icon{
	border-width: 2px;
}

copy{
	padding: 45px 0px 50px 0px;
	display: block;
}

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

about > div{
	display: block;
	padding-top: 0px;
}

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

complianceWise{
	margin: 20px 0px 80px 0px;
  	display: block;
}

logo{
	display: inline-block;
	--logoSize: 100px;
	width: var(--logoSize);
	height: var(--logoSize);
	background-image: url("../img/logo/mark/Mark_Lime.png");
	background-position: center; 
	background-size: contain;
	background-repeat: no-repeat;
	
	margin: 10px 0px 0px -10px;
}

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

#f2 {
	background-color: #d8f473;
}

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

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

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

#f3 {
	background-color: #222823;
}

#f3 h4 {
	color: #f5f5f5;
}

#f3 h3 {
	color: #f5f5f5;
}

#f3 p {
	color: #f5f5f5;
}

#f3 h13 {
	color: #f5f5f5;
}

#f3 servicePicker {
 display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  background-color:rgba(125, 126, 118, 0.3);
  border-top: 1px solid #DCDCDC;
  border-bottom: 1px solid #DCDCDC;
  border-radius: 3px;
  padding: 20px;
}

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

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;
}

.lightColor{
  color: #F5F5F5;
}

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

.grid5 li img{
  float: left;
  padding: 10px 10px 10px 0px;
  width: 64px;
  height: 64px;
}

.logo{
  display: block;
  width: 100%;
  height: 200px;
  flex-grow: 1;
}

.logo_pw_lime{
  background: url('../img/logo/secondary/Solid/Secondary_Solid-Lime.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

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

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

.grid5 li{
	background-color: #D8EF79;
  	color: #333132;
  	padding: 40px 20px;
  	border-radius: 20px;
  	gap: 10px;
}

.grid2{
  	display: grid;
  	grid-template-columns: 70% auto;
  	margin: 0px 0px 40px 10px;
}

.grid3{
  	display: grid;
  	grid-template-columns: repeat(3, 1fr);
  	gap: 10px;
}

.grid4{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	
	justify-items: center;

  	padding: 0px;
	gap: 10px;
}

.grid5{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	
	padding: 0px;
	gap: 10px;
}



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

.circled {
  background-color: black;
  color: #d7f372;
  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;
}

.lightColor .circled{
	color: black;
	background-color: #d7f372;
}

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

.serviceText p {
  margin: 4px 0 0;
  font-size: 0.95rem;
  line-height: 1.4;
}