/*  import google fonts */

@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Quando&display=swap');

@font-face {
  font-family: "KUNSTLER";
  src:url('font/KUNSTLER.TTF');
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

header{
/*  min-height: 150px;*/
  background-color: #04A098;
  padding: 10px 0;
  display: flex;
  justify-content: center;
}
.header-img{
  text-align: center;
}
.header-img img {
  width: 110px;
  border-radius: 50%;
}

/* ====== Header Section End Here ====== */

.item{
  transition: .5s ease-in-out;
  border-radius: 10px;
}
.item a img{
  border-radius: 10px;
}
.item:hover{
  filter: brightness(80%);
}

/* ========== gallery-section End Here =========== */

footer{
  
  background: url("img/download.png") no-repeat center;
  position: relative;
  z-index: 0;
}
footer:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #04A098;
  opacity: .7;
  z-index: -1;
}
.footer-text{
  padding-top: 20px;
}
.footer-text h2{
  font-family: 'Quando', serif;
  font-size: 48px;
  color: #fff;
}
.footer-text p{
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: #fff;
}
.footer-right{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 250px;
}
.footer-right h2{
  font-family: KUNSTLER;
  font-size: 53px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
}
.footer-right p{
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 0;
}

/* ========= The End =========== */
