@import url(//db.onlinewebfonts.com/c/543092172c7d9a62dc51fa0fc510b6cf?family=Everett+Regular);
@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300&family=Mali:wght@200&family=Mitr:wght@200;300;400&family=Nunito:wght@200;300&family=Rubik+Mono+One&display=swap');

*{
  box-sizing: border-box;
  margin-left: 10px ;
  margin-right: 10px;
  color: #222;
  background-color:#e6e6e6 ;
  z-index: 99;
}
/*---------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------*/
section{
  position: relative;
  display: block;
  margin-top: 15%;
  line-height: 1px;
  font-family: 'Nunito', sans-serif;
  
}
section h1{
  font-size: 130px;
  font-weight: lighter; 
  text-align: center;
  transform: translateY(6rem);
  animation: up 500ms linear forwards;
  opacity: 0;
  z-index: 1; 
}
section h2{
  font-size: 130px;
  font-weight: lighter; 
  text-align: center; 
  transform: translateY(6rem);
  animation: up 500ms linear forwards;
  animation-delay: 0.3s;
  opacity: 0;
  z-index: 1;
}
section p{
  font-family: 'Everett Regular', sans-serif;
  font-size: 30px;
  font-weight: lighter;  
  text-align: center;
  transform: translateY(6rem);
  animation: up 500ms linear forwards;
  animation-delay: 0.6s;
  opacity: 0;
  z-index: 1;
}
@keyframes up {
	from {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
/*---------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------*/

pj p{
  font-size: 20px;
  font-family: 'Everett Regular', sans-serif;
  font-weight: bold;
}
.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 10px;
  justify-content: center;
  margin-top: 5%;
}


.column {
  margin-top: 10%;
  -ms-flex: 20%; 
  flex: 20%;
  max-width: 20%;
  padding: 0 1px;
}

.column img {
  margin-top: 10px;
  vertical-align: middle;
  width: 100%;
  transition: 0.5s ease-in;
  border-radius: 25px;
}
.column img:hover {
  transform: scale(1.03);
  box-shadow: 10px 10px 10px;
  border-radius: 1px;
  border: none;
}


/*---------------------------------------------------------------------------*/




/*---------------------------------------------------------------------------*/
@media (max-width:1024px) {
  section h1{
    margin-top: 30%;
    font-size: 70px;
  }
  section h2{
    font-size: 70px;

  }
  section p{
    font-size: 20px;
  }
  .row {
    margin-top: 10%;
  }
}
/*---------------------------------------------------------------------------*/



/*---------------------------------------------------------------------------*/
@media (max-width: 560px) {
  section h1{
    margin-top: 30%;
    font-size: 40px;
  }
  section h2{
    font-size: 40px;

  }
  section p{
    font-size: 15px;
  }
  .column {
    -ms-flex: 90%;
    flex: 90%;
    max-width: 90%;
  }
}
/*---------------------------------------------------------------------------*/



/*---------------------------------------------------------------------------*/
