/*Class pad project*/
.pad-project{
  min-height: 65vh;
  background-image: url("../images/dignitypackgroup.jpeg");
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
  background-attachment: fixed;
  background-repeat: no-repeat;
} 

.pad-project .wave{
  position: absolute;
  bottom: -.5rem;
  left: 0;
  height: 5rem;
  width: 100%;
  background: url(../images/wave.png);
  background-size: 100rem 11rem;
  animation: waves 8s linear infinite;
  background-repeat: repeat-x;
}
.pad-project .wave1{
  animation-direction: alternate;
  animation-duration: 4s;
  opacity: .3;
}

.pad-project .wave2{
  animation-direction: reverse;
  animation-duration: 6s;
  opacity: .5;
}

.pad-project .wave3{
  animation-duration: 4s;
  opacity: 1;
}

@keyframes waves{
  0%{
      background-position-x: 0;
  }
  100%{
      background-position-x: 100rem;
  }
} 

.pad-project h3{
  margin-top: 2rem;
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  
}

.pad-project p{
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

/* information*/
.information-heading{
  margin: auto;
  padding-top: 6rem;
  display: flexbox;
  font-size: 3.5rem;
  color: #57A0D3;
  position: relative;
  letter-spacing: .2rem;
  
}
.information-heading::before, .information-heading::after{
  content: '';
  position: absolute;
  height: 2.5rem;
  width: 2.5rem;
  border-top: .4rem solid #57A0D3;
  border-left: .4rem solid #57A0D3;
  margin: auto;
}

.information-heading::before{
  top: 5.8rem;
  left: -2rem;
  
}

.information-heading::after{
  bottom: -.5rem;
  right: -2rem;
  transform: rotate(180deg);
}

.information .information-heading{ 
  text-align: center;
  width: 400px;
}
.information{
  background: #fff; 
  
}

.information .row{
  text-align: center;
  font-size: 20px;
  width: 70%;
  margin: auto;
  padding-top: 30px;
  letter-spacing: 1px;
}

/*class project image*/
.project-image{
  background: #fff; 
}
.project-image .row{
  font-size: 20px;
  padding-top: 100px;
  letter-spacing: 1px;
}
.project-image .row h3{
  text-align: center;
  font-weight: 500;
  color: rgb(8, 187, 8);
  font-size: 2rem;
  
}
.project-image .row p{
  font-size: 20px;
  
}
.project-image #logo{
  width: 200px;
  width: 200px;
}

/*class project button*/
.project-button {
  height: 100px;
  width: 100%;
  background-color: #fff;
  text-align: center;
  padding-top: 20px;
}
.row .btn{
  outline: none;
  border: none;
  border-radius: 5rem;
  background: white;
  border-style: groove;
  border-color: #57A0D3;
  font-size: 1.5rem;
  cursor: pointer;
  height: 3.5rem;
  width: 13rem;
  box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
}
.row .btn:hover{
  letter-spacing: .1rem;
  opacity: .9;
  color: white;
  background: #57A0D3;
}
.collaboration .row img{
  width: 200px;
  width: 200px;
  padding: 20px;
}


@media(max-width:1000px){

  .pad-project h3{
    font-size: 2rem;
  }
  .pad-project p{
    font-size: 1.5rem;
  }
  .pad-project{
    margin-top: 3rem;
  }
  .pad-project .btn{
      height: 2.5rem;
      width: 9rem;
      font-size: 1rem;
  }
  .information .row{
    text-align: start;
    font-size: 18px;
    width: 90%;
    margin: auto;
  }
  .information .information-heading{ 
    text-align: center;
    width: 250px;
    font-size: 2.1rem;
  }
  
  .project-image .row p{
    text-align: center;
    font-size: 18px;
  }
  .project-image #logo{
    width: 130px;
    width: 130px;
  }
  .pad-project .wave{
    margin-bottom: .5rem;
  }
  .pad-project{
    margin-top: 4.5rem;
  }
}