:root {
  /*LIGHT*/
  
    /*Color*/
  
  /*NEW ACCENTS TO INTEGRATE*/
  --grey0: #FFFFFF;
  --grey1: #F6F6F6;
  --grey2: #f2f2f2;
  --grey3: #e9e9e9;
  --grey4: #c7c7c7;
  --grey5: #a9a9a9;
  --grey6: #7f7f7f;
  --grey7: #6b6b6b;
  --grey8: #4b4b4b;
  --grey9: #292929;


  /*Background*/
  
--primBkg: var(--grey1);
  --accentBkg: var(--grey0);






  --primBlue-1: rgba(150, 185, 235, 1);  /* Bright sky blue */
  --primBlue-2: rgba(136, 171, 227, 1);
  --primBlue-3: rgba(122, 157, 219, 1);
  --primBlue-4: rgba(108, 143, 211, 1);
  --primBlue-5: rgba(94, 129, 203, 1);   /* Midpoint — vibrant warm blue */
  --primBlue-6: rgba(82, 116, 188, 1);
  --primBlue-7: rgba(70, 102, 170, 1);
  --primBlue-8: rgba(58, 88, 150, 1);
  --primBlue-9: rgba(46, 74, 130, 1);    /* Deep saturated blue */

  /*NEW ACCENTS TO INTEGRATE*/


  --accentBlue1: rgba(128, 181, 204);
  --accentBlue2: rgba(91, 145, 177);

  --accentPurple1: rgba(142, 168, 236);
  --accentPurple2: rgba(59, 83, 190);

  --accentLime: rgba(197, 228, 176);
  --accentTeal: rgba(171, 222, 212);

 
 
    /*Font Family*/
    --headingFont:'Poppins', sans-serif;
    --bodyFont: 'Source Sans Pro', sans-serif;
  
  
     /*Text Color*/

  --primTextColorL: var(--grey9);
  --secTextColorL: var(--grey8);

  --bodyText: var(--grey9);

  
  
  }
  
  
/*Animations----------Animations----------Animations----------Animations----------Animations----------Animations----------Animations----------*/

 /* 
.reveal {
  overflow: hidden; 
  animation: animate .8s linear forwards; 
  white-space: nowrap; 
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0); 
  

}
*/
/*
.reveal {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.reveal::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white; /* Matches background to "hide" text 
  animation: maskReveal 1.5s ease-out forwards;
}

@keyframes maskReveal {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}
*/

@keyframes animate { 
  0% { 
    width: 0%;
    opacity: 20%;

  } 
  100% { 
    width: 100%;
    opacity: 100%;

  } 
} 

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes grow-left {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
/*Animations----------Animations----------Animations----------Animations----------Animations----------Animations----------Animations----------*/


.textOnColor {
  color: var(--grey1);
}


  h1{
    font-family: var(--headingFont);
    font-size: 48px;
    line-height:72px;
    font-weight:500;
    color: var(--primTextColorL);
  }
 

  h2{
    font-family: var(--headingFont);
    font-size: 36px;
    font-weight:600;
    color: var(--secTextColorL);
  }
  h3{
    font-family: var(--headingFont);
    font-size: 28px;
    font-weight:500;
    line-height: 42px;
    color: var(--secTextColorL);
  }
  h4{
    font-family: var(--headingFont);
    font-size: 24px;
    font-weight:500;
    color: var(--secTextColorL);
  }
  h5{
    font-family: var(--headingFont);
    font-size: 20px;
    font-weight:400;
    line-height: 30px;
    color: var(--secTextColorL);
  }
  
  .bodyTextSemi{
    font-family: var(--bodyFont);
    font-size: 16px;
    font-weight:500;
    line-height:38px ;
    color: var(--bodyText);
  }
  
  .bodyText1{
    font-family: var(--bodyFont);
    font-size: 16px;
    font-weight:400;
    line-height:38px ;
    color: var(--bodyText);
  }
  .bodyText2{
    font-family: var(--bodyFont);
    font-size: 18px;
    font-weight:400;
    color: var(--bodyText);
  }
  
  .highlight{
    font-weight:600;
    color: var(--primTextColorL);
    /*
    background-image: linear-gradient(45deg, var(--primAccentA), var(--primAccentB));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;*/
    display: inline;
  }


a:hover{
  color: var(--accentPurple2);
}
  
  .menuItem{
    font-family: var(--headingFont);
    font-size: 16px;
    font-weight:500;
    color: var(--bodyText);
  }

  ul#chipList li {
    display:inline;
    margin-right: 4px;
  }
  /*
  .menuItem.scrolled{
    color: var(--textOnColor);
  }*/
  
  
  .chip{
    padding: 8px;
    font-family: var(--bodyFont);
    font-size: 14px;
    font-weight:400;
    color: var(--secTextColorL);
    border: 2px solid var(--grey3);
    border-radius: 24px;
    background-color: var(--grey2);
  }


  .caption{
    font-family: var(--bodyFont);
    font-style: italic;
    font-size: 16px;
    font-weight:400;
    color: var(--secTextColorL);
  }
  
  .iconSm{
    width: 16px;
    height: 16px;
  }
  
  .iconMd{
    width: 24px;
    height: 24px;
  }
  
  .iconLg{
    width: 40px;
    height: 40px;
  }
  
  
  
  
  
  
  
  
  body, html {
    /*background: url('images/org_bkground.svg') no-repeat;
    background-size: cover;*/
    overflow-x: hidden;
      background-color: var(--primBkg);

  
    /*background-color: #F3F2EE;*/
  }
  
  .accentBg{
    background-color: var(--accentBkg);
  }
  
  
  .accentBlueBkg{
    background-color: var(--primAccent);
  }


  .card{
  background-color: var(--accentBkg);
  padding: 24px;
  border-radius: 24px;
  border-style: none;
}

.cardBorder{
  padding: 24px;
  border-radius: 24px;
  border-style: solid;
  border-color: var(--grey3);
  overflow: hidden;
}
  
/*
.cardBorder:hover{
  
  background-color: var(--grey2);
  border-color: var(--grey4);
  opacity: 0.9;
}
*/
  
  
  .smBuffer{
    height: 10vh;
  }
  
  .buffer{
    height: 20vh;
  }
  
  
  a:hover {
    text-decoration: none;
  }
  
  
  .navbar.scrolled{
    background-color: rgba(255, 255, 255, 0.6) !important;
    transition: background-color 200ms linear;
  }
  
  .hoverTxt{
    color: var(--textOnColor);
  }




.container-fluid{
  padding-top: 25%;
  width: 75%;
}

#intro{
padding-left: 3%;
padding-bottom: 20%;
}

.container{
  padding: 0px;
}


.workRow{
  padding: 0px;
}



.card-img-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;/*
  border-radius: 8px;*/
  transition: .5s ease;
  background: rgba(0, 0, 0, 0.5);
}

.card:hover .card-img-overlay {/*
border-radius: 8px;
border-style: none;*/
  opacity: 1;
}


.socialMediaRow{
  height: 20vh;
}

.socialMedia{
  width: 100%;
}



.imgMock{
  width: 100%; 
  border-radius: 1%; 
  border: 2px solid #f2f2f2;
}


.cardBorder.hover-shadow {
  transition: 0.3s;
}

.cardBorder.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(214, 214, 214, 0.2), 0 6px 20px 0 rgba(218, 218, 218, 0.19);
  cursor: pointer;
}




.hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}