/* homepage*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
 }
 
 body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; /* Change the font family here */
    font-size: 16px;
    line-height: 1.5;
    margin-top: -10px;
 }
 
 /*Header*/
 header {
    background-color: rgba(0, 0, 0, 1);
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
 }
 
 header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
 }

 /*Header logo in top left*/
 .logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-left: 20px;
 }

 /*navigation menu*/
 nav ul {
    display: flex;
    list-style: none;
    margin-right: 20px;
 }
 
 nav ul li {
    margin: 0 15px;
 }
 
 nav ul li a {
    color: #fff;
    text-decoration: none;
    font-family: "Open Sans", sans-serif; /* Change the font family here for the navigation links */
 }
 
/*hover over navigation menu - underline and change color to green*/
   nav ul li a:hover {
    text-decoration: underline;
    color: #C1FF72;
 }
 /*elements of navigation menu*/
 h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif; /* Change the font family here for headings */
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
 }

/* contact css */
.Title
{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
  background-color: #23979d;  
  padding-top: 40px;
}
.our-team
{
  color: white; 
  font-size: 60px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Exo;
  }
  @font-face {
    font-family: Exo;
    src: url(./fonts/Exo2.0-Medium.otf);
  }
  .main{
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #23979d;
  }
  .profile-card{
    position: relative;
    width: 220px;
    height: 220px;
    background: white;
    padding: 30px;
    border-radius: 50%;
    box-shadow: 0 0 22px #3336;
    transition: .6s;
    margin: 0 25px;
  }
  .profile-card:hover{
    border-radius: 10px;
    height: 260px;
  }
  .profile-card .img{
    position: relative;
    width: 100%;
    height: 100%;
    transition: .6s;
    z-index: 99;
  }
  .profile-card:hover .img{
    transform: translateY(-80px);
  }
  .img img{
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 22px #3336;
    transition: .6s;
  }
  .profile-card:hover img{
    border-radius: 10px;
  }
  .caption{
    text-align: center;
    transform: translateY(-100px);
    opacity: 0;
    transition: .6s;
  }
  .profile-card:hover .caption{
    opacity: 1;
  }
  .caption h3{
    font-size: 21px;
  }
  .caption p{
    font-size: 16px;
    color: #23979d;
    margin: 2px 0 3px 0;
  }
  .caption .social-links a{
    color: #333;
    margin-right: 8px;
    font-size: 21px;
    transition: .6s;
  }
  .social-links a:hover{
    color: #23979d;
  }

  .blurb-background{
    background: #23979d; 
    padding-top: 50px;
    padding-bottom: 50px;

  }
  .blurb
  {
    padding-right: 30px;
    padding-left: 30px;
    text-align: center;
    background-color: #fff;
    border-radius: 30px;
    padding: 20px;
    width: 85%;
    font-size: 18px; 
    margin-left: 7.5%;
    
  }
  .group-picture{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #23979d; 
    padding-bottom: 20px;
  }

  .group-picture .img{
    width: 55%; 
    height: 55%; 

  }
  
/*footer*/
     body{
        margin:0;
        overflow-x:hidden;
        }
        
        .footer{
        background:#C1FF72;
        padding:30px 0px;
        font-family: 'Play', sans-serif;
        text-align:center;
        }
        
        .footer .row{
        width:100%;
        margin:1% 0%;
        padding:0.6% 0%;
        color:black;
        font-size:0.8em;
        }
        
        .footer .row a{
        text-decoration:none;
        color:black;
        transition:0.5s;
        }
        
        .footer .row a:hover{
        color: forestgreen;
        }
        
        .footer .row ul{
        width:100%;
        }
        
        .footer .row ul li{
        display:inline-block;
        margin:0px 30px;
        }
        
        .footer .row a i{
        font-size:2em;
        margin:0% 1%;
        }
        
/* SMALLER SCREEN ADJUSTMENT */ 
.mobile-nav{
  display:none; 
}

.hamburger{
  display:none; 
}


@media (max-width:900px){

  /* footer */
.footer{
text-align:center;
padding:5%;
}
.footer .row ul li{
display:block;
margin:10px 0px;
text-align:center;
}
.footer .row a i{
margin:0% 3%;
}

/* header */ 

nav ul {
  display: none;
}

.hamburger {
  position: relative; 
  display: block;
  width: 35px; 
  margin-right: 15px;
  cursor: pointer; 

  appearance: none; 
  background: none; 
  outline: none; 
  border: none; 
}

.hamburger .bar, .hamburger:after, .hamburger:before {
  content: ''; 
  display: block; 
  width: 100%; 
  height: 5px; 
  background-color: #C1FF72; 
  margin: 6px 0px; 
  transition: 0.4s; 
}

.hamburger.is-active:before{
  transform: rotate(-45deg) translate(-8px, 6px); 
}

.hamburger.is-active:after{
  transform: rotate(45deg) translate(-9px, -8px); 
}

.hamburger.is-active .bar{
  opacity: 0; 
}

.mobile-nav{
  position: fixed; 
  top: 0; 
  margin-top: 125px; 
  left: 100%; 
  width: 100%; 
  min-height: 100vh; 
  display: block; 
  z-index: 991; 
  background-color: #C1FF72;
  padding-top: 120px;
  transition: 0.4s; 
}

.mobile-nav.is-active{
  left: 0; 
}

.mobile-nav a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  color: black;
  font-size: 18px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.mobile-nav a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a::before {
  content: "\2022";
  margin-right: 8px;
  color: #C1FF72;
}

.mobile-nav a.active {
  font-weight: bold;
}

.mobile-nav a.active::before {
  margin-right: 8px;
  color: #C1FF72;
}    


/*profile card */
 .main {
    height: auto;
    flex-wrap: wrap;
  }

  .profile-card {
    width: calc(50% - 50px);
    margin: 10px;
  }

  .profile-card:hover {
    height: auto;
  }

  .caption {
    transform: translateY(-100px);
    opacity: 0;
    transition: .6s;
  }
  .img img{
    translate: 0px -17px; }

  .profile-card:hover .caption {
    transform: translateY(0);
    opacity: 1; 
  }
/* picture */ 
.group-picture img {
  width: 100%;
}
}

@media (max-width: 1024px) {
  .main {
    height: auto;
    padding: 50px 0;
  }
  
  .profile-card {
    width: 180px;
    height: 180px;
    margin: 10px 20px;
  }
  
  .caption h3 {
    font-size: 18px;
  }
  
  .caption p {
    font-size: 14px;
  }
}



