html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.navigation {
  display: grid;
  transition: background-color .2s;
}
.popup-nav {
  display: flex; 
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(66, 75, 84, .62);
  position: absolute;
  top: -1000px;
  width: 100%;
  justify-content: center;
  opacity: 0;
  transition: .2s ease;
}
.popup-nav ul {
  margin: 0;
  list-style-type: none;
  text-align: center;
  font-size: 17pt;
  padding: 25px;
  line-height: 50px;
}
.popup-nav ul li a{
  text-decoration: none;
  font-weight: 600;
  opacity: .85;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-clip: border-box;
  padding-top: 9px;
  padding-bottom: 9px;
  font-size: 22px;
  font-weight: 500;
  line-height: 50px;
  transition: opacity .2s;
}
.popup-nav ul span {
  width: 250px;
  height: 2px;
  display: flex;
  margin: 0 auto;
  background: linear-gradient(to right, #522A0500, #522A05, #522A0500);
}


@media (max-width:600px) {
  .navigation-wrap > .menu-button {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
    height: 50px;
  }
  .navigation-wrap > .navigation-items {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #333;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 50px;
    left: 0px;
  }
  .navigation-wrap > .navigation-items > a {
    display: block;
    width: 100%;
  }
  .popup-nav ul li a {
    font-size: 17px;
    line-height: 40px;
  }
}

.footer > .container > img {
    height: 100px;
    margin-left: 20px;
}

.fw-500{
  font-weight: 500;
}

.page-title {
  text-align: center;
}

.grid-3 {
  grid-column-gap: 14px;
  grid-row-gap: 2px;
  grid-template-rows: repeat(auto-fit, 50px);
  grid-template-columns: 30px 30px 30px;
  grid-template-areas: ". Area";
}

.image-3 {
  /* instagram color filter: */
  filter: invert(38%) sepia(29%) saturate(2376%) hue-rotate(294deg) brightness(90%) contrast(109%);
}

.image-3,
.image-4,
.image-5 {
  margin: auto;
  width: 50px;
}

@media (max-width:600px) {
  .grid-3 {
    grid-column-gap: 4px;
  }

  .image-3,
  .image-4,
  .image-5 {
    width: 25px;
  }
}