/* header{
    width: 100%;
    height: 100vh;
    background-image: url('./images/project elevation images/RENDER-6.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.466);
    background-blend-mode: overlay;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

header img{
    width: 20%;
} */


.card-profile {
    background: rgba(8%, 62%, 62%,0.8);
    width: 100%;
    text-align: center;
    position: relative;
    padding: 0 0 0.5em 0;
    -webkit-box-shadow: 0 0 10px 8px rgba(8%, 62%, 62%,0.2);
    box-shadow: 0 0 10px 8px rgba(8%, 62%, 62%,0.2);
    border-radius: 10px;
  }
  
  .card-profile .profile__picture {
    position: absolute;
    height: auto;
    width: 150px;
    left: 50%;
    padding: 10px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border-radius: 50%;
    /* border: 7px solid rgba(8%, 62%, 62%,0.2); */
    -webkit-box-shadow: 0 -10px 10px 0 rgba(14, 138, 138, 0.2);
            box-shadow: 0 -10px 10px 0 rgba(13, 129, 129, 0.2);
  }
  
  .text {
    padding: 80px 0 0;
    color: white;
  }
  
  .text h3 {
    margin: 0 0 0 0;
    font-size: 1.5rem;
    font-weight: 500;
  }
  
  .text h5 {
    margin: 0 0 0 0;
    margin-top: 10px;
    font-size: 0.9rem;
  }
  
  .text p {
    margin: 14px 0 0 0;
  }
  
  .contact ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 80%;
    padding: 0px 20px;
    margin:0px auto;
  }
  
  .contact li {
    list-style-type: none;
  }
  .contact li a{
    font-size: 25px;
    color:white;
  }
  
  .contact hr {
    border: 0;
    height: 1px;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.75)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(0, 0, 0, 0));
  }
  
  .contact h5 {
    margin: 10px 0px;
    color: white;
  }


.developer-profile h5 {
    text-align: center;
    font-style: italic;
    border-bottom: 2px solid rgba(8%, 62%, 62%,1);
    padding-bottom: 30px;
    margin: 40px auto;
    width: 70%;
  }
  
  .developer-profile ul {
    counter-reset: item;
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 0px auto;
  }
  .developer-profile ul li {
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.8;
    width: 40%;
  }

  .developer-profile ul li:before {
    /* Trail counter with period and a space */
    content: counter(item) ". ";
    /* Increase one for every one new item */
    counter-increment: item;
    /* Color the counter however you want! */
    color: rgba(8%, 62%, 62%,1);
    margin-right: 14px;
    font-style: italic;
  }
  @media screen and (min-width: 800px) {
    ul li:before {
      margin-right: 6px;
    }
  }
  @media screen and (max-width: 992px) {
    .contact ul {
        width: 100%;
        flex-wrap: wrap;
    } 
    .contact ul li{
        /* width: 40%; */
        margin: 10px 0px;
    }
    .contact ul a {
        font-size: 25px;
    }
    .card-profile .profile__picture {
        width: 120px;
        height: 120px;
    }
    #snaplLogo{
      width: 40%;
    }
  }
  @media screen and (max-width: 768px) {
    
    .developer-profile ul li{

      width: 90%;
      
    }
    
  }