/* apexcreartive code start */
.box {
  margin-top: 80px;
  margin-bottom: 80px;
}
.image-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  max-width: 80%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.column1 p {
  color: #fff;
}
.image-grid__item {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 353px;
  align-items: stretch;
  justify-content: center;
  position: relative;
  height: 220px;
  transition: transform 0.14s ease-in, text-shadow 0.1s ease-in;
  width: 100%;
}
.image-grid__item:before {
  content: "";
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  border-radius: 3px;
  box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.06), 0 8px 20px -2px rgba(0, 0, 0, 0.1), 0 6px 10px -6px rgba(0, 0, 0, 0.2);
  transition: visibility 0.1s ease-out, opacity 0.1s ease-out;
  opacity: 0;
}
.image-grid__item:hover:before {
  visibility: visible;
  opacity: 1;
}

.grid-item {
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 1;
  align-items: stretch;
  justify-content: center;
  text-decoration: none;
  color: #eeeeee;
  overflow: hidden;
}
.grid-item:hover .grid-item__image {
  transform: scale(1.2);
}
.grid-item:hover .grid-item__hover {
  visibility: visible;
  opacity: 1;
}
.grid-item:hover .grid-item__name {
  visibility: visible;
  transform: scale(1);
  opacity: 1;
}

.grid-item__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.grid-item__hover {
  visibility: hidden;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(rgba(47, 48, 50, 0.2), rgba(47, 48, 50, 0.7));
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.15);
  border-radius: 0;
  transition: visibility 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
}

.grid-item__name {
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 1;
  align-items: center;
  font-size: 20px;
  font-weight: 300;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4), 2px 2px 6px rgba(0, 0, 0, 0.3);
  justify-content: center;
  letter-spacing: 1px;
  transform: scale(0.9);
  transform-origin: center center;
  transition: visibility 0.14s ease-out, opacity 0.14s ease-out, transform 0.24s ease;
  opacity: 10;
  display: flex;
}


.grid_12 p {
  margin: 0;
}

.grid_12 h1 {
  margin: 0;padding-bottom: 15px;
}
.creds2 {
  padding: 120px 210px;
}
.column2 h3 {
  margin: 0;
  color: #fff;
}
.creds2 p {
  line-height: 27px;
  padding-bottom: 36px;
}
ul.socialicon {
  background-color: transparent;
  padding-top: 20px;
}
#feature3 p {
  line-height: 27px;
}
.column2 p {
  margin: 0;
  padding-top: 10px;
  color: #fff;
}
.column3 p {
  margin: 0;
  color: #fff;
}
.column3 h3 {
  margin: 0;
  color: #fff;
}
.box .article {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#footer p {
  margin-top: 10px;
}
#footer {
  padding: 30px 0 !important;
}
p.bio-content {
  padding-bottom: 30px;
}
.creds2 h3 {
  /* padding-top: 33px; */
  font-size: 28px;
  font-style: italic;
  display: inline;
  /* margin-top: 33px; */
  transform: translateY(32px);
}
.name {
  font-size: 28px;
  font-weight: 600;
}
.socialicon a {
  border-radius: 69%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* navigation-css */
.navbar{
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-branding{
  font-size: 2rem;
}

.nav-menu{
  display: flex;
  justify-content: center;
  align-items: center;  
}

.nav-link{
  transition: 0.3s ease-out;
}

.nav-link:hover{
  color: dodgerblue;
}

.hamburger{
  display: none;
  cursor: pointer;
}

.bar{
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #000;
}
.mob {
  display: none;
}

  .creds2 {
    padding: 120px 60px;
}
  .hamburger{
    display: block;
  }

  .hamburger.active .bar:nth-child(2){
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu{
    position: fixed;
    left: -100%;
    top: 257px;
    gap: 0;
    flex-direction: column;
    background-color: #262626;
    width: 100%;
    text-align: center;
    transition: 0.3s;
  }
  

  .nav-item{
    margin: 16px 0;
  }

  .nav-menu.active{
    left: 0;
  }
  .creds2 {
    padding: 120px 60px;
  }
  .box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.box .article {
    margin: 32px 0;
  }
  .grid-item__name {
    font-size: 19px;
  }
  @media(max-width: 1024px){
    .mob{
      display: block !important;
    }
      .desktop{
        display: none !important;
      } 
    .box .article {
      margin: 16px 0;
    } 
    .article.column1, .article.column2, .article.column3 {
      height: 41vh;
    }
    .mobbb {
      color: #000 !important;
    }
  }
  @media(max-width: 767px){
    .box {
      flex-direction: column;
      margin-top: 50px;
      margin-bottom: 50px;
    }
  }
@media(max-width: 550px){ 
  .box .article {
    margin: 20px 0;
}
.box {
  margin-top: 0;
}
  .image-grid__item {
    width: 204%;
  }
  .creds2 {
    padding: 49px 21px;
} 
.grid_12 h1 {
    font-size: 30px;
  }
  .nav-menu {
    top: 143px;
  }
}

@media(max-width: 425px){
  .grid_12 h1 {
    font-size: 20px;
  }
  .grid_12 p {
    margin: 0;
    font-size: 12px;
  }
  .nav-menu {
    top: 125px;
  }
} 

/* test-css */

/* apexcreartive code end */
body {
  width: 100%;
  margin: 0 auto;
 
}
  #nav, #feature, #feature2, #feature3, #footer {
    margin: 1%;}
   
    .column1, .column2, .column3 {
      width: 31.3%;
      float: left;
      margin: 1%;
       }

#footer{

  margin-top: auto;
}

    .column3 {
      margin-right: 0%;}



  #footer {
    background-color: #000000;
    padding: 0.5em;}

    #footer{
     /* height: 5em; */
    }
 .article {
    height: 10em;
    margin-bottom: 1em;
    background-color: #efefef;
  }
 #feature {

   /* height: 55em;
    margin-bottom: 1em; */
    background-color: #efefef;

/* background-image: url("NSOPPWelcomepagephoto.jpg");
    background-repeat: no-repeat;
    background-attachment: scroll;
    float: center;*/
/*    image-orientation: center;*/


/*    H1:;*/

 }
 


 #feature2 {
   height: 8em;
    margin-bottom: 1em;
    background-color: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

 }


#feature3 {
   /* height: 30em; */
   padding: 50px 0;
    margin-bottom: 1em;
    background-color: #efefef;

 }

  .creds{
  
 /* float: right ; */
   line-height: 0.2;
   position: bottom right;

}

* {
  font-family: Arial, Verdana, sans-serif;
  color: #665544;
  text-align: center;}



/*Style the tab*/



.tab {
overflow: hidden;
border: 1px solid #ccc;
background-color: #f1f1f1;

}


/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: center;
  border: none;
  cursor: pointer;
  padding: 14px 16px;
  transitiion: 0.3s;
  font-size: 17px;

}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}


.fade-in-textL1 {
  position: relative;
  text-align: center;
  font-family: Arial;
  font-size: 60px;
/*  font-size: 4vw;*/
  animation: fadeIn 2.5s;
  -webkit-animation: fadeIn 2.5s;
  -moz-animation: fadeIn 2.5s;
  -o-animation: fadeIn 2.5s;
  -ms-animation: fadeIn 2.5s;

 
}

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

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

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

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

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

.fade-in-textL2 {
  position: relative; 
  text-align: center;
  font-family: Arial;
  font-size: 60px;
/*  font-size: 4vw;*/
  animation: fadeIn 3.5s;
  -webkit-animation: fadeIn 3.5s;
  -moz-animation: fadeIn 3.5s;
  -o-animation: fadeIn 3.5s;
  -ms-animation: fadeIn 3.5s;


}

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

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

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

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

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

.fade-in-textL3 {
  position: relative; 
  text-align: center;
  font-family: Arial;
  font-size: 60px;
/*  font-size: 4vw;*/
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;


}

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

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

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

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

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

  .fa {
  padding: 2.1px;
  font-size: 20px;
  width: 40px;
  text-align: center;
  text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

.fa-linkedin {
  background: #007bb5;
  color: white;
     position: relative;

}

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
  position: relative;

  
}

/* Twitter */
.fa-twitter {
  background: #55ACEE;
  color: white;
    position: relative;

}


.fa-youtube {
  background: #bb0000;
  color: white;
     position: relative;
 
}

.fa-instagram {
  background: #962fbf;
  color: white;
     position: relative;

}

.fa-github {
  background: #000000;
  color: white;
     position: relative;

}

img.bpnsophoto1 {
width: 98%;
  height: auto;
}

/*img.align-left {
  display: block;
  maring: 0px;
position: center;
float: center;}
*/





/** {
  font-family: Arial, Verdana, sans-serif;
  color: #665544;
  text-align: center;}
#nav, #feature, .article, #footer {
  background-color: #efefef;
  margin-top: 20px;
  padding: 10px 0px 5px 0px;}
#feature, .article {
    height: 100px;}

li {
  display: inline;
  padding: 5px;}*/